Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple Facebook Connect in Google App Engine (Python)

Does anyone have a simple and successful demo implementation of facebook connect in an google app engine application. I am developing an web application and want facebook connect to be the primary method for logging in.

like image 738
Axel Avatar asked Oct 03 '09 02:10

Axel


People also ask

What is Google App Engine Python?

Python on Google App Engine. App Engine offers you a choice between two Python language environments. Both environments have the same code-centric developer workflow, scale quickly and efficiently to handle increasing demand, and enable you to use Google’s proven serving technology to build your web, mobile and IoT applications quickly and with...

How do I deploy a Python web app with App Engine?

With App Engine, there are no servers to maintain. You simply upload your application and it's ready to go. In this codelab, you will learn how to deploy a simple Python web app written with the Flask web framework.

Is Google App Engine easy to use?

Overview Google App Engine applications are easy to create, easy to maintain, and easy to scale as your traffic and data storage needs change. With App Engine, there are no servers to maintain. You simply upload your application and it's ready to go.

How can I send HTTP requests to Google using Python?

An user-friendly way to send HTTP requests to Google ( requests) A quick way to enable running securely with https locally (pyOpenSSL) SQLite is part of the standard Python library, but the other packages are not. So you have a couple of dependencies to install.


1 Answers

I recently used python-social-auth to use Google login, should also work with Facebook:

https://python-social-auth.readthedocs.org/en/latest/

I had some troubles with the implementation, but this tutorial really helped me:

http://artandlogic.com/2014/04/tutorial-adding-facebooktwittergoogle-authentication-to-a-django-application/

like image 188
Henk van Ramshorst Avatar answered Oct 05 '22 09:10

Henk van Ramshorst