Vladimir
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? > >  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...