Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
The centerpiece of the Django object-relational mapping scheme is the Model.
0
votes
1answer
51 views
Use an image of an ImageField for an other ImageField. Django
I'm using django_facebook. Each time a user registers with fb, her profilpicture is loaded on a field called 'image'
In my models.py I have a field, named profilpic, to allow users to have a profil ...
0
votes
1answer
358 views
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 ...
0
votes
1answer
95 views
Use facebook picture as default picture. Django
I'm using djngo-facebook and I would like the profile-picture to be the picture of my user when they register with facebook.
In my custom User model (Userprofile) I have a
profilpic = ...
0
votes
1answer
316 views
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 ...
0
votes
1answer
58 views
Issues with facebook profile model
I am using facebook_connect with my app.
I want to import user profile model to my app.....But it gives me an error of
from facebook_connect.models import FacebookProfileModel
ImportError: cannot ...
1
vote
1answer
683 views
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 ...
0
votes
1answer
93 views
Model fields not updated
I wanted to add facebook feed to my website (only the first latest wall message). So I have created the model :
class FacebookFeed(models.Model):
checked = models.DateTimeField(name="Time ...
0
votes
0answers
249 views
Facebook connect not working with django app
I have created a django application. The application has an option to login with facebook id also. And it is working fine with my app. But now when testing the application, i found the login actually ...
1
vote
2answers
588 views
Implementing Facebook logout functionality for Django App
I have created a django app where users can be looged in with both django app username or facebook username. Now i want to implement a logout functionality while logging in through facebook . Can ...
0
votes
1answer
743 views
redirecting url after facebook logs in successfully with django app
I created a django application with a user login/registration page. I am trying to implement a facebook login also possible along with my django login. For doing so i was following this link : enter ...
0
votes
1answer
147 views
facebook django type select for many-to-many fields
I am wondering if there is maybe a way with django to display bring in extra data into the display of CheckboxSelectMultiple ie avatar or first_name or last_name
With the manytomany field its really ...
