How do I turn off SSL on a python (django) heroku app? No answers here on SO. Need to do POSTs from other websites, can only do that with http
Asked
Active
Viewed 386 times
1
-
What do you mean by posts can only be done with http? – cdvv7788 Oct 01 '15 at 05:41
-
cross origin problem (need referal thing in header) – javatripping Oct 01 '15 at 05:55
1 Answers
0
You can not turn off SSL. It is on by default https://blog.heroku.com/archives/2012/5/3/announcing_better_ssl_for_your_app
To do a POST to a different domain/port/protocol you are running into https://en.wikipedia.org/wiki/Same-origin_policy.
This SO answer details out the methods on bypassing same origin policy. Ways to circumvent the same-origin policy

Community
- 1
- 1

John Moses
- 1,283
- 1
- 12
- 18