I was programming myself a pretty nice api to get some json data from my gameserver to my webspace using json,
but everytime i am sending a request using angular i am ge
Recently I also faced this, the problem came from the SSL config on my app.
In my .env I set the SSL_DISABLE
to False
, then I change it to True
.
change SSL_DISABLE=False
to SSL_DISABLE=True
So, the point here is are: check your URL, maybe be it something like: https://127.0.0.1:5000
, just change it to http://127.0.0.1:5000
.
Hope it helps to someone who also facing this issue in the future.