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
2
votes
1 answer

Logging out in Django Facebook?

Using Django-facebook for the first time. For some reason, if i log in with facebook, but later log out of my Facebook account. My application stays logged in with the default Django user, with an expired session token because "the user has logged…
zhuyxn
  • 6,671
  • 9
  • 38
  • 44
2
votes
1 answer

django-facebook internal code saying it can't find facebook_id

I've followed the tutorial and the examples for django-facebook from https://github.com/tschellenbach/Django-facebook/tree/master/facebook_example I've got it up and running (as in i've run syncdb and migrations, and integrated the javascript and…
Anil Beniwal
  • 45
  • 1
  • 6
2
votes
2 answers

Facebook Login in Selenium Tests

I'm working on a django project, using django_facebook for Facebook interaction, and Selenium for automated system testing. In the tests, when it comes to logging to facebook from my application, I do this: …
finiteautomata
  • 3,753
  • 4
  • 31
  • 41
2
votes
0 answers

Django Lib to create Facebook Canvas App

I found at least three libraries which can be used to create Facebook Canvas Apps on Django: PythonForFacebook - https://github.com/pythonforfacebook/django-facebook Fandjango - https://github.com/jgorset/fandjango Django For Facebook…
Timus83
  • 681
  • 4
  • 12
  • 24
2
votes
1 answer

Links in django_facebook app result in Bad Request: missing signed_request

I'm using the django_facebook library installed on pythonanywhere. When I click a link from one view to another, I get an error message: 400 Bad Request Missing signed_request. Could someone give me the brief on how links work in a facebook…
lowerkey
  • 8,105
  • 17
  • 68
  • 102
2
votes
1 answer

Django, Howto connect (and extent) facebook and django-userena or similar

It's been explicitly written in Django-facebook that they recommend it to be used with Userena: We recommend using Django Userena. It seems easier to work with than Django Registration. Both are supported and good packages though. To use django…
Soask
  • 691
  • 12
  • 21
1
vote
1 answer

django-facebook api No module named 'django.conf.urls.defaults'

I installed django_facebook (django-facebook==6.0.3). I am using Django 1.11. I got an error: File "path/lib/python3.5/site-packages/django_facebook/urls.py", line 4, in from django.conf.urls.defaults import patterns,…
Mark
  • 33
  • 2
1
vote
0 answers

Django_facebook api integration- A server error occurred. Please contact the administrator

I am new to django and trying to integrate django_facebook api in my django website that i am currently running on localhost. I am getting an error saying A server error occurred. Please contact the administrator.I have attached the error log and…
1
vote
0 answers

Django-facebook ValueError at /facebook/connect/

I am new to django and i and i am using the Django-facebook to use the Facebook API's In my Applciation. I followed the tutorials as given in This Link I am currently running my application at local.myexampledomain.com and in my facebook Application…
Mohan
  • 4,677
  • 7
  • 42
  • 65
1
vote
0 answers

django-facebook like and share button for contents. template example

I am trying to get django-facebook work with my website . I have this model class Photo(models.Model): name = models.CharField(max_length=100) photo=models.ImageField(upload_to=/upload) catagory=…
Maj Osaka
  • 11
  • 2
1
vote
0 answers

facebook_django : Given URL is not permitted by the application config

I'm getting this error for facebook login in local development. I'm using facebook_django package. And my dev server runs on 0.0.0.0:8000. In my site url I've tried setting my site url to 127.0.0.1:8888 and 0.0.0.0:8000 both and both ways it gives…
user2539745
  • 995
  • 2
  • 15
  • 24
1
vote
0 answers

Django Facebook + Userena

I am trying to integrate Django-Facebook with an app already using Django-Userena for user accounts. When I try to visit "/accounts/edit" when logged in through Facebook, however, I am not able to edit any of the existing information. If I am logged…
Nick B
  • 9,267
  • 17
  • 64
  • 105
1
vote
0 answers

Post status to Facebook using Django and django-facebook package

I installed django-Facebook and Django-registration. Django-registration is working fine but django-Facebook is not.I need to post status to Facebook via textarea provided in my site. As i am newbie to Django, a clear and step-by-step guide would be…
floyddd
  • 71
  • 12
1
vote
1 answer

Add Facebook App to Django to get permissions on Facebook pages

There are some Facebook pages on which i want to post on behalf of Page Admin.I want something like this: Facebook page admin login using Facebook account and authenticates by clicking on button I captures all the rights(page_access_token and…
vaibhav1312
  • 863
  • 4
  • 13
  • 31
1
vote
0 answers

Django: Changing default reset_password views and forms?

I have been using Django's built in password reset views and forms to great success, but I'm not sure how: I could customize the error messages in each of the forms' field validation. For instance, rather than the default message: 'That e-mail…
zhuyxn
  • 6,671
  • 9
  • 38
  • 44