Django-facebook
Django-facebook copied to clipboard
Facebook open graph api implementation using the Django web framework in python
`json.loads` was expecting a string, but in python 3 `base64decode()` return bytes and that is why it was bugged. We fix this by making sure the decoded payload data is...
Hello, When i try to use django_facebook.tasks.get_and_store_likes with Celery i have this error : ``` [2014-11-16 12:51:23,700: ERROR/MainProcess] Task django_facebook.tasks.get_and_store_likes[3b388b18-18f7-4243-9985-58354760d794] raised unexpected: AttributeError("'OpenFacebook' object has no attribute 'version'",) Traceback (most...
The code block explaining custom profile is now fixed to appear properly aligned in the documentation.
$pip install django_facebook site-packages/open_facebook/tests.py", line 336 print picture['source'] ^ SyntaxError: Missing parentheses in call to 'print'
I am building a way to connect a registred user to his facebook account. It works great if the user asking for connect has a facebook account. But if I...
I am using a django custom user and any time I try to log in I get this error 'NoneType' object has no attribute 'objects'. I would like to have...
Changelog: - added `FACEBOOK_APP_ID_KWARGS`, `FACEBOOK_APP_SECRET_KWARGS` and `FACEBOOK_DEFAULT_KWARGS` in `django_facebook/settings.py` - modified functions where `FACEBOOK_APP_ID`, `FACEBOOK_APP_SECRET` and `FACEBOOK_DEFAULT` are used to accept `*args` and `**kwargs` and assign the appropriate value from...
Right now, `django_facebook` expects to have set `FACEBOOK_APP_ID` and `FACEBOOK_APP_SECRET`. My use case is as follows: - add configurations of facebook apps in database (app_id and app_secret) - have other...
There's a bug when use FacebookBackend and ModelBackend together. Adding kwargs to user_authenticate to fix it.
``` /py33_django17/lib/python3.3/site-packages/django_facebook/utils.py:316: RemovedInDjango18Warning: commit_on_success is deprecated in favor of atomic. @transaction.commit_on_success ``` It's a simple fix, simply change: ``` @transaction.commit_on_success ``` to ``` @transaction.atomic ``` Tested and should work in...