How to properly make a http web GET request
Servers sometimes compress their responses to save on bandwidth, when this happens, you need to decompress the response before attempting to read it. Fortunately, the .NET framework can do this automatically, however, we have to turn the setting on. Here’s an example of how you could achieve that. GET GET async POSTContains the parameter method … Read more