I have implemented an oauth2 server and an oauth2 client using flask-oauthlib.
When I am trying to test locally, the client returns an InsecureTransportError and tells me that I should be using https.
Is there a way to test the app locally without https?
The client is running on 127.0.0.2:5000 and the server is running on 127.0.0.1:5000.
Thanks