Vladimir

Results 71 comments of Vladimir

HTTP status 100 in the POST means that the client must send the body.

> I get http status code 100 What SourcePawn code do you use to get this status?

> > > I get http status code 100 > > > > > > What SourcePawn code do you use to get this status? > > ![изображение](https://user-images.githubusercontent.com/30573685/125140787-f70b1f80-e11b-11eb-9743-b46d8a927ca5.png) What is...

Strange, HTTP status 1xx should handle CURL inside RIP

Try ```sourcepawn public void OnPostResponse(HTTPResponse response, any value, const char[] error) { PrintToServer("Data %i", response.Status); PrintToServer("Error \"%s\"", error); PrintToServer("way-way"); } ```

> > Try > > ```sourcepawn > > public void OnPostResponse(HTTPResponse response, any value, const char[] error) > > { > > PrintToServer("Data %i", response.Status); > > PrintToServer("Error \"%s\"", error);...

> > Yes, it’s an issue with HTTP/2 on Windows. HTTP/2 is only attempted over HTTPS. > > Is there a workaround? Use SteamWorks extension and convert body to JSON...

https://github.com/ErikMinekus/sm-ripext/blob/f50b9e4ffc8c74dec5cec7b9a734ad860aefffe1/mbedtls/include/mbedtls/x509.h#L88

At first I thought that you wanted to create your own client certificate so that it works only with your backend. If you don't care about this and you just...

Wow! Great idea. > I'm not sure any forward here would be useful for executing further async work, as you'll have no way to keep the server ticking until your...