Closed SpencerMcMurray closed 5 years ago
Not sure if this is related, but I just dealt with this issue the other day. AJAX does not allow calls without a backslash as the end of the URL. It will put a backslash at the end and recall the address using HTTP.
For example, if your URL is https://thisstuff.com/api?foo=bar
AJAX will change that to http://thisstuff.com/api/?foo=bar
resulting in the Mixed Content error on certain browsers. To fix this, simply add a backslash to the end of the requested URL.
I hope this helps.
There is an option to force HTTPS. Read the readme please.
This is the error I'm getting:
Heroku uses HTTPS for their hosting, so I'm assuming it doesnt like that the API calls use HTTP.