I am developing an IIS web server to act as a receiver for Meraki's API scanner. Their API sends out .json periodically with information pertaining to the wireless clients connected to each Meraki device.
I'm having problems understanding the process of correctly reading these POSTs from Meraki and manipulating/accessing them in general on the server to be displayed on a web page.
I am very new to server-side programming (and programming in general) so apologies if this is a very vague/unhelpful description of my problem.
Things I have looked at so far -
- Have ensured both client and server are validated (based off server logs I can see data being sent (in varying byte sizes with HTTP 200 status code)
- Have added MIME Type for .json (application/json)
- Have enabled Request Filtering for .json files
- Have added mapping for POST requests (wasn't configured beforehand)
- This is all being ran on a Windows 2012 R2 server with IIS 8.5
Do I need to be telling the server what to do inside the web.config file with all this incoming data?
More than happy to share as much information as possible to anyone that is willing to help.