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

Django: Full fledge Facebook and Twitter integration (Django-Facebook, django-social-auth, django-allauth)

Before I post my question I would like to tell you that I'm aware of few excellent django packages out there for twitter and facebook integration: Django-Facebook django-social-auth django-allauth So, here's my question: What I want? I want…
6
votes
2 answers

Fetching facebook data once logged in using django-social-auth

We've set up an application that uses the django-social-auth extension to authenticate users with Facebook. The authentication works fine, but we are not clear on how to go about fetching useful information from Facebook (friends lists, likes,…
nat
  • 184
  • 1
  • 4
4
votes
1 answer

OAuth2 specification states that 'perms' should now be called 'scope'. Please update. Django Facebook connect

If a django baseg webpage, and I use a django-facebook (Django Facebook by Thierry Schellenbach ) And today I noticed, that there is an Error on login in with facebook, the error message is: OAuth2 specification states that 'perms' should now be…
4
votes
0 answers

Facebook Graph API Scheduled Posts created but not published

I'm using django-facebook's Open Facebook API to try to defer a post with an image to a facebook page. The (relevant part of the) code is: graph_api = OpenFacebook(integration.long_lived_page_token) message = "something" picture =…
felix
  • 446
  • 5
  • 10
4
votes
2 answers

Setup django test server with port forwarding

I want to setup django test server so it can be accessed through web address (mainly for facebook testing). For this I'm using the no-ip service wich works fine with apache. But when I try starting the test server on port 80 access from the same web…
prototype
  • 3,303
  • 2
  • 27
  • 42
3
votes
0 answers

FacebookUserConverter function get_and_store_likes() gives error?

I am developing a Facebook Canvas application using django-facebook. When I used FacebookUserConverter.get_and_store_like(), it gives me this error: [Errno 10061] No connection could be made because the target machine actively refused it My app…
Sijan Bhandari
  • 2,941
  • 3
  • 23
  • 36
3
votes
1 answer

Update the relation to point at settings.AUTH_USER_MODEL

I'm getting this error. I'm trying to configure tschellenbach/Django-facebook package. I was getting "user or profile didnt have attribute facebook_id" error. So I tried to configure it using the code from facebook_example which is a working example…
user2539745
  • 995
  • 2
  • 15
  • 24
2
votes
2 answers

Mysterious problem with Fandjango

I've just configured fandjango with my simply django application. Here's the files: VIEWS.PY from django.http import HttpResponse from django.shortcuts import render from fandjango.decorators import…
Fred Collins
  • 5,004
  • 14
  • 62
  • 111
2
votes
2 answers

Using django-facebook to display text on facebook canvas

I am practicing using django-facebook to integrate my django app with facebook and turn it into a facebook app. The documentation for django-facebook is very bad but I have managed to get my sample app to load the facebook canvas page. But I am…
user712378
  • 373
  • 1
  • 3
  • 8
2
votes
1 answer

Error using Django Facebook

I am trying to use Django Facebook to register users in my app. Right now I am in local develoment and after giving persmissions to the app in Facebook and following all indications in readthedocs, I get the next error: Please specify a Facebook app…
pbernardo
  • 126
  • 7
2
votes
2 answers

Getting information about the user from Facebook using django_facebook

first of all I would like to apologize to the community if this is a repost. I was searching stackoverflow for something that might help me on this matter but my search ended with no success. So here comes my problem. Maybe it's my lack of skills,…
Jovan Andonov
  • 436
  • 3
  • 12
2
votes
1 answer

Suppressing SAVE of object in POST - Django Rest Framework

This is related to the question : Assymetric nature of GET and POST in a Django REST framework Serializer . I've put it as a fresh question, instead of putting more questions in that thread, accordingly to SO guidelines I am writing a Viewset and a…
dowjones123
  • 3,695
  • 5
  • 40
  • 83
2
votes
2 answers

No handlers could be found for logger "django_facebook.models"

while installing django_facebook, i got an error : Validating models... No handlers could be found for logger "django_facebook.models" Unhandled exception in thread started by Traceback (most recent call last): …
Rakk
  • 511
  • 4
  • 8
2
votes
1 answer

django-facebook connect users, but doesn't fill admin tables with any data

I'm successfully using django-facebook to login facebook users ( e.g, after login, the template tag {{ user }} shows the facebook username). however, it doesn't make it to admin interface - and under facebook users there is no data at all. also,…
DataB
  • 161
  • 1
  • 2
  • 8
2
votes
1 answer

django-facebook not inserting facebook data to the models

I have installed django-facebook in my Working application but it is creating a lots of problems. I have followed the installation of django-facebook here but I have not been able to implement it properly. In facebook/example when I try to connect…
D Dhaliwal
  • 552
  • 5
  • 23
1
2 3 4 5 6