WNetWrap icon indicating copy to clipboard operation
WNetWrap copied to clipboard

WinINet wrapper - tiny windows HTTPS library, no dependencies. 封装了WinInet的强大http请求库 make POST and GET requests

Results 4 WNetWrap issues
Sort by recently updated
recently updated
newest added

比如 http://www.4399.com ![image](https://user-images.githubusercontent.com/47938748/149819158-08ccdf1e-8cc1-465f-a5c9-03067ecd4982.png) ![image](https://user-images.githubusercontent.com/47938748/149819141-c1a3e6fb-3941-4ea0-8faa-7723c7661f66.png)

Error handling right now is just a text output of GetLastError() in the response object, and it doesn't cover all possible errors. There should be a more helpful error handling...

enhancement
help wanted
good first issue

Here I implemented a simple solution. An if statement checks which protocol is used by using `URI["scheme"]` and set the appropriate flags.

Normal http requests (no ssl) does not seem to work. The error returned by `GetLastError()` is `12157`, which translate into: `ERROR_INTERNET_SECURITY_CHANNEL_ERROR` > The application experienced an internal error loading the...