Problem running Heroku's Facebook app tutorial with Python Problem running Heroku's Facebook app tutorial with Python heroku heroku

Problem running Heroku's Facebook app tutorial with Python


This is because https is not enabled locally on your machine, you could enable this or you could alternatively run without the SSL on your localhost. To do this you would edit the function to look something like:

def get_home():    return 'http://' + request.host + '/'