Web API http vs https

I am calling a http GET Web API to my flask server. However the server always receives “https” even though the URL is “http”. Is http not supported at all? or is it an advanced option?

2 Likes

having the same issue here. a reply to this would be very helpful.

@brobbins19958 Can you share the url you’re using for the GET call?

1 Like

Yes. same here. spent hours debugging my API until I realised through webview on broswer developer tools that thunkable have been sending HTTPS instead of HTTP. Is there no way to use HTTP on webAPI blocks? even when we clearly put HTTP as the URL?

1 Like

You may try ANY HTTP URL and view its responsive web-app on browser. Then go to browser developer tools to see the outgoing request header. It is always HTTPS.

I only discovered this when I had my API built serving only HTTP. Besides building a HTTPS pipe, is there other way to make thunkable send out HTTP instead?

1 Like