Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/examples/real_world_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ Most people don't set SSL on their server while testing and that is fine. You ca

2. Equivalent to above you can set this in Python (if you have problems setting environment variables)

# Somewhere in webapp_example.py, before the app.run for example

Add this code in webapp_example.py, before the call app.run()

.. code-block:: python

import os
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1'