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
1
vote
1 answer

userprofile matching query does not exist django facebook error

I am getting the following error after integrating DoesNotExist at /facebook/connect/ UserProfile matching query does not exist. Here is my models.py from django.db import models from django_facebook.models import FacebookProfileModel from…
Rohit
  • 75
  • 1
  • 1
  • 5
1
vote
0 answers

Checkin to a page

I got a page on Facebook and i want to know how come people can't check in on my page? I tried checking in and it came up with a different page and i have merged the pages together but it still not working. Can you please let me know if my need to…
1
vote
0 answers

Facebook connect without refreshing the page. Django

In my django app, I use django-facebook. I would like my users to be able to fb connect on a page. Once they are connected, some changes are made on the page. What I would like to do is allow the user to connect and without refreshing the page…
Juliette Dupuis
  • 1,027
  • 2
  • 13
  • 22
1
vote
1 answer

Django social_auth custom user model FacebookBackend explanation

I'm trying to use social_auth (omab) for the first time and I'm find that there is no working example how to store basic facebook user data. Authentication works and user is created without problem as it's explained in the social_auth docs but I…
Goran
  • 6,644
  • 11
  • 34
  • 54
1
vote
1 answer

Where to place facebook_connect files in my app?

I have used facebook friends app for inviting friends in my app. So I want know to that where I have to place its files in my app because it has mode, view manager, admin, setting, url and template files. I am not sure but may be by just keep the…
Inforian
  • 1,716
  • 5
  • 21
  • 42
1
vote
1 answer

Django: django-facebook redirects to /facebook/connect/

I read all the documentation about django-facebook, and I'm still not understanding why after setup the settings.py, the registration redirects to a template on django-facebook. settings.py FACEBOOK_LOGIN_DEFAULT_REDIRECT =…
cleliodpaula
  • 819
  • 2
  • 11
  • 27
1
vote
0 answers

django-face book login

I want to implement facebook login,like,share,commenting etc in my site. I want to use django-facebook api and open graph for this.I didnt get proper document for this from any site.Can any one help me for this?
1
vote
0 answers

django-facebook and renewing oauth token

I'm using django-facebook on an app. Users can publish open graph actions from the application, but I'm running into problems with expired oauth tokens since moving away from offline_access. I'd like to check token validity (and update it, if…
sean
  • 83
  • 6
1
vote
0 answers

Django-facebook authentication

I believe i have managed to integrate Django-facebook, but it only logs in the first time. Do you guys have any idea what the problem might?
Danny
  • 11
  • 1
1
vote
1 answer

Retrieve username and invite friends on django-facebook

I followed the instructions to install Django-facebook into my site to allow users to register, login, invite friends and share stuff on my site. I could easily register users to my site using their facebook accounts. However, i'm very confused on…
user1115538
1
vote
1 answer

FB App opening in new browser rather then FB Canvas if I use DJango Fandjango App

I have a FB App which I created using Fandjango. It works fine if a user logs in to the application for the first time but in case user has used the app earlier and want to open the app, it opens up in independent browser and not in FB Canvas. Any…
user996048
  • 123
  • 2
  • 13
1
vote
1 answer

No module named registration.forms in django-facebook

I'm using the django-facebook library (https://github.com/tschellenbach/Django-facebook) for authentication using Facebook. However, when I go to the sample template to test registrations at /facebook/connect and try to connect, I get an…
Msencenb
  • 5,675
  • 11
  • 52
  • 84
0
votes
0 answers

django-facebook don't find the "fbsr_" cookie

I use django-facebook in google appengine. After in december I seted up the new OAuth2, and then i found, that the cookie named to fbsr_+apiID (and need a new prasing like here: https://gist.github.com/1190267) Everything was good, but yesterday, I…
0
votes
1 answer

How can I override/extend the "pipeline" flow used in django-social-auth?

This is discussed in this thread but it looks like it hasn't been documented yet. I'm ultimately trying to create the following Facebook Connect sign-up flow: User connects to Facebook (such that django-social-auth gets an access token but doesn't…
dshap
  • 1,382
  • 14
  • 19
0
votes
2 answers

Getting internal error when loading canvas app through FB, but not directly

I'm using django for a website app, mostly. I need to write a canvas page to handle requests. In the simplest form, I have: (r'^canvas/','commitments.views.canvas'), in urls.py, and: @csrf_exempt def canvas(request): return HttpResponse("Hello…
sean
  • 83
  • 6