Questions tagged [django-facebook]

A Facebook open graph API implementation using the Django web framework in python.

A Facebook open graph API implementation using the Django web framework in python. It enables users to register using the Facebook API. It converts the Facebook user data and creates regular User and Profile objects. Integrates with your existing Django application.

Documentation for this app is sparse.

82 questions
0
votes
1 answer

django-socialregistration access_token error

I've been currently trying to write a simple Django app with social platforms integration. I decided to use a plugin django-socialregistration to connect to facebook accounts. I followed the installation guide on…
tomuś
  • 129
  • 1
  • 6
0
votes
2 answers

django url templatetag fails to reverse url

I'm using django-facebook and for some strange reason it stopped working. Ofcourse I changed something, somewhere for it to happen. But as you might have guessed I'm clueless for the moment. The error message I get it: TemplateSyntaxError at…
Jonas Geiregat
  • 5,214
  • 4
  • 41
  • 60
0
votes
1 answer

Invite Facebook Friends using Django/Python

I need to create an input that looks uses autoSuggest to lookup my friends list and send their 'facebook id' to a Django/Python script. I've completes this without a hitch. Eg:…
0
votes
1 answer

Django sign up with facebook return an error

*as Can't load URL: The domain of this URL isn't included in the app's domains. To be able to load this URL, add all domains and sub-domains of your app to the App Domains field in your app settings.** im using http://127.0.0.1:8000 so here is…
Luqman Tuke
  • 119
  • 2
  • 7
0
votes
1 answer

How to run Facebook authentication on localhost in Django?

I have read all discussion about this matter on StackOverFlow but all of them seem outdated. Does anyone know how to run facebook authentication on localhost in Django by social-auth-app-django ? I have spent probably a day or so trying to solve …
Aleksei Khatkevich
  • 1,923
  • 2
  • 10
  • 27
0
votes
1 answer

How can a Facebook app read its own posts?

I'm developing a Django application that can also post to Facebook. I have a problem reading the posts that the application itself created. Given that the permissions requested using django-allauth includes publish_actions, check the example…
tzot
  • 92,761
  • 29
  • 141
  • 204
0
votes
2 answers

Django-Allauth and django-facebook to retrieve Facebook profile images

I integrated django-rest-auth and django-allauth for user registration/login using Facebook. Now, I can authenticate (and I can create) the Facebook user and I can retrieve some basic informations like e-mail, first name, last name... Now I need…
0
votes
0 answers

How do I use django_facebook to authorize and authenticate a user?

I am having a hard time understanding the authentication flow of django_facebook. If I have a native android app do I use my app id and app secret in the 'settings.py' or do I use the app id and secret in my native app to get the api key?
zacmwa
  • 578
  • 10
  • 28
0
votes
1 answer

django facebook how to redirect back to previous page

I am using the django facebook app, how do I get the user redirected back to previous page after login ? I tried to use the "next" hidden input box, but that did not work .
Chris Hansen
  • 7,813
  • 15
  • 81
  • 165
0
votes
1 answer

Django-facebook: how to repost to a group or fanpage

Please help, I'm not familiar with facebook API. I have a facebook app with a token and secret. My users are happily authenticated via python-social-auth. I've installed django-facebook. I want to create a group (or a fanpage) and make my content…
maremare
  • 414
  • 1
  • 4
  • 19
0
votes
1 answer

Posting a message on facebook using django-facebook

I've tried to find the answer but I couldn't find any topic that could answer my question. I just added django-facebook to my project and I'm trying to post on a Facebook's user. Here is the situation. Person A logs in to the system then he wants to…
0
votes
1 answer

Django-facebook. How to use a user's profile from other apps(not django-facebook)

I'm new to django. Now I just added django-facebook to my project. The installation went fine, everything seems working. Now I'm trying to use user's profile like name,facebookID, etc. to other apps beside django-facebook. I tried to use from…
0
votes
1 answer

django-facebook library errors.

I am using django_facebook to connect with Facebook from my Django app. I am using @facebook_required(scope='publish_stream,user_photos') before my view function. @facebook_required(scope='publish_stream,user_photos') def sport(request, sport): …
Cloud
  • 123
  • 2
  • 9
0
votes
1 answer

Django-facebook not redirecting to a specific page

I am using django-facebook- https://github.com/tschellenbach/Django-facebook for authentication. However I am not able to get the login redirect to configure properly. The documentation says use this code to make the redirection work
Echo Alex
  • 60
  • 1
  • 8
0
votes
1 answer

Why the request.user is AnonymousUser in my django-facebook canvas application?

I am developing a Facebook canvas application using the frameworks django_facebook. I want to save the user data in my local database. @facebook_required(canvas=True) def home(request,graph): facebook = FacebookUserConverter(graph) …
Sijan Bhandari
  • 2,941
  • 3
  • 23
  • 36