I am curious if there is any article/ library / anything useful that is built for the newly announced Facebook Graph API. I am planning to use it for a Python/Django project.
|
since it looks to me as something simple as calling an URL and deserializing the result (JSON), this should be only a few lines:
content is now a dictionary with all the info:
|
|||
|
|
There is also this: http://github.com/facebook/python-sdk |
|||||
|
|
You also can use pyfb (https://github.com/jmg/pyfb) Which is very easy to integrate with django In your views.py put something like:
And in your setting.py you should have the facebook app configuration:
Finally just configure your urls.py
Hope this be useful! |
||||
|
|
|
Just in case anyone is still looking for a Python implementation of the Facebook Graph API that's usable with Django, I recommend The good thing about |
|||||||||
|
|
I think you'd like Facepy:
|
|||
|
|
|
It seems that there's more mature fork of the project to which dar linked here: http://github.com/dickeytk/django_facebook_oauth Documentation is missing few things but it shouldn't that hard to implement. |
|||
|
|
|
In Python file use following code:
And in Client Side use below code (Which will check for the permission and redirect to permission page if not already provided):
Hope this will help you in making your own python application... :) |
||||
|
|
|
You're in good company. This is the only thing I've found so far http://github.com/digvan/django_facebook_oauth |
|||
|
|
|
And the newest kid on the block: |
|||
|
|