Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have looked a bit into using the Facebook Registration for user authentication on my website and I am having trouble finding good examples. I am using python on Google App Engine and wanted to see if anyone had examples that are not on facebook or in facebook canvas. This one is very helpful but doesn't have a few points I want to took at.

I just simply want to use Facebook as a way to allow users to log in and to be able to verify who they are on any page of my website. Any examples of this would be greatly appreciated.

share|improve this question
I ended up using SimpleAuth ( code.google.com/p/gae-simpleauth ) which has been a great solution and provided a lot of other options too – clifgray Dec 10 '12 at 3:58

3 Answers

If you would like to experiment more you could use Flask which integrates nicely with Google App Engine and then on top of it by using the Flask-OAuth the authentication part it's pretty straight forward (full example):

facebook = oauth.remote_app('facebook',
    base_url='https://graph.facebook.com/',
    request_token_url=None,
    access_token_url='/oauth/access_token',
    authorize_url='https://www.facebook.com/dialog/oauth',
    consumer_key=FACEBOOK_APP_ID,
    consumer_secret=FACEBOOK_APP_SECRET,
    request_token_params={'scope': 'email'}
)

gae-init is one of my examples where I'm using Flask on Google App Engine and you could login using Facebook or Twitter besides the Google login.

share|improve this answer
would flask work alright along with Jinja2 and webapp2? What you have on GAE-Init is exactly what I would like to allow users to login – clifgray Sep 25 '12 at 17:18
@clifgray GAE-Init uses jinja2 so there is no problem there.. if you go through flask documentation and spend a little bit more time with it on gae.. you will eventually stop the traditional webapp2 url mapping and handling.. it's so much easier..! :) – Lipis Sep 25 '12 at 17:55
@clifgray for example check this file: code.google.com/p/gae-init/source/browse/main/main.py where you have the URK mappings and request handlers kind of connected and not in separate files, once your project will become bigger as it would happen with the traditional webapp2 approach.. – Lipis Sep 25 '12 at 17:57
alright neat I'll check it out. it looks great. also do you think this will be supported and developed further for a bit to come? – clifgray Sep 26 '12 at 18:12
@clifgray which one? Flask? – Lipis Sep 26 '12 at 19:17

This (unofficial) Facebook SDK for Python fork has a suite of examples, including one for App Engine.

https://github.com/pythonforfacebook/facebook-sdk/tree/master/examples/appengine

(Note: not tested recently, nor warranted by me or Facebook. But could help.)

share|improve this answer

It's not in terse example format, but here is working code that supports registration and login through facebook:

https://github.com/mjibson/journalr/blob/master/main.py (search for "facebook") https://github.com/mjibson/journalr/blob/master/facebook.py (just a simple module that implements the facebook API and isn't the full SDK)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.