Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
3k views

How to get (and use) extended permissions in Facebook with Python/Django

I'm trying to write a simple app that lets a user grant my code permission to write to her page's Facebook stream. As I understand it, it should be as easy as: Have the user click on a button that ...
7
votes
3answers
210 views

Have Facebook dropped support for Python?

The Python SDK seems to have been removed from Github. https://github.com/facebook/python-sdk returns a 404. Have they moved the development somewhere else, dropped support, or is this just a ...
7
votes
1answer
697 views

Facebook Python-SDK VS. PyFacebook?

I'm starting to develop a facebook application using Django. I'm trying to choose the appropriate API wrapper for my application and I can't decide whether to use PyFacebook (very well documented but ...
4
votes
2answers
1k views

app-engine-patch and pyFacebook not working

I am trying to write a facebook app using app-engine-patch and pyFacebook. I am using nothing but the examples provided with each tool and for some reason it will not work. I have combined the two ...
3
votes
1answer
217 views

Has the PyFacebook library been deprecated, discontinued or replaced?

Every link I find for the tutorials leads me to this: http://developers.facebook.com/search?q=User:PyFacebook_Tutorial Which doesn't work. Couldn't find anything on facebook developers... closest ...
2
votes
1answer
185 views

Facebook status update using pyfacebook

Update status facebook using python I am using this answer to solve my problem. But this thing asks to authenticate the app , that is ok. But every time I run the script it again opens the browser .. ...
2
votes
2answers
305 views

pyfacebook @facebook.require_login() decorator causing constant auth_token refresh

First time using pyFacebook. I've literally copied the example application and put it up onto my server. I've created an FB app and now when I try to load the app basically what happens is that the ...
2
votes
2answers
576 views

PyFacebook Infinite Session

I am trying to set a cron task to read updates for a Facebook application. I have prompted the user to grant Offline Access permissions and i have store the session_key in the db. I am crearing a new ...
2
votes
4answers
321 views

Facebook Page details and the RESTful API?

Hi I have a list of Facebook Page urls eg... http://www.facebook.com/daftpunk http://www.facebook.com/DavidGuetta ... What's the best way to: Check if these urls are actually for Facebook Pages ...
2
votes
2answers
2k views

Update Facebook Page's status using pyfacebook

I am attempting to add functionality to my Django app: when a new post is approved, I want to update the corresponding Facebook Page's status with a message and a link to the post automatically. ...
1
vote
0answers
94 views

What happened to the facebook-sdk git repository for python (facebook.py)? [closed]

The github blob and repository is now 404'ing: https://github.com/facebook/python-sdk/blob/master/src/facebook.py https://github.com/facebook/python-sdk/
1
vote
0answers
84 views

Pyfacebook adding extra permission

How and/or where do i add extra permission like email, etc. in pyfacebook while creating a new user? Side question: Also, there is a facebook link of the pyfacebook tutorial which appears to be ...
1
vote
0answers
310 views

Integrating Django project with Facebook

I have a running application, and would like to add new features requring being registered with facebook accounts. Because I would perform some FQL queries later on, the only reasonable solution is ...
1
vote
1answer
105 views

Problem displaying xfbml with pyfacebook

I'm using pyfacebook on my app but I'm having problems displaying xfbml For example I have to use iframes to display like buttons or like boxes. What's strange: 1) On the login page the appears ...
1
vote
0answers
165 views

Pyfacebook- not getting my Facebook details sucessfully?

I've followed the Pyfacebook tutorial here: http://uswaretech.com/blog/2009/02/how-to-build-a-facebook-app-in-django/ However, it never seems to get my user id (and thus user details). The ...
1
vote
1answer
185 views

Using PyFacebook with the latest Django release

The PyFacebook documentation states that: Note: Applications built with djangofb.py are not compatible with django 1.x. Download django-facebookconnect instead. Is this true? Has anyone managed ...
1
vote
1answer
635 views

Fetch Facebook ID with PyFacebook, “Session key is required”

I'm trying to fetch the logged in user's ID with Facebook + PyFacebook via: #Establish connection to Facebook via API f = Facebook(config['app_conf']['pyfacebook.apikey'], ...
1
vote
3answers
1k views

What's the easiest way to get my facebook status and photos using python?

I just want to import my facebook status and photos to my personal django website but all the examples and documentation i can find are for developing facebook applications. A simple rss feed would ...
1
vote
1answer
2k views

Require extended permissions in FBML pyfacebook app

I'm trying to get my FBML canvas page to automatically prompt new app users for permission to publish_stream. Following Facebook's documentation I tried using the required_permissions argument to ...
1
vote
1answer
3k views

Request Extended Permissions in Facebook, Django, Pyfacebook

I'm developing an IFrame application in Facebook (using pyfacebook and Django) and could not understand the official documentation. Can someone give me a pointer on how to request extended permissions ...
1
vote
2answers
763 views

Looping Redirect with PyFacebook and Google App Engine

I have a Python Facebook project hosted on Google App Engine and use the following code to handle initialization of the Facebook API using PyFacebook. # Facebook Initialization def ...
1
vote
1answer
2k views

PyFacebook: Facebook() instance has no stream methods

I need to update my Facebook Fan Page in a django app so I have this code: import facebook from django.conf import settings def login_facebook(): fb = ...
1
vote
1answer
1k views

Why is my Facebook application with error 104 (“invalid signature”)?

I am trying to develop a Facebook application using PyFacebook (hosted on Google App Engine). It's an FBML application (runs in a Facebook canvas instead of an iframe). I'm having problems getting ...
1
vote
1answer
618 views

Python, Django, Facebook- Using the facebook.require_login() decorator redirects me to the callback url everytime

Okay I will try to be as descriptive as possible here, I am using Python-Django server and the pyFacebook helper. I have this callback url on the facebook edit application page: ...
1
vote
1answer
623 views

How to Publish stream using pyfacebook?

HI, Can anyone tell me how to publish a story or a news feed on a user profile using pyfacebook, i have used fbml = "<fb:wide><fb:subtitle>This is the subtitle</fb:subtitle>" ...
0
votes
0answers
70 views

Using PyFacebook for Facebook Connect does not work in Firefox

I'm using PyFacebook to implement Facebook Connect with my Google App engine webapp. However, after using Log-in function, I still cannot retrieve the id and other Facebook info from Facebook, using ...
0
votes
3answers
3k views

Facebook API and Python

Does anyone know of a good platform agnostic example or library that does Facebook authentication and Graph API access via Python? The official Facebook Python SDK is tied to Google App Engine and ...
0
votes
1answer
249 views

pyfacebook + Google App Engine: can't find new functions in facebook.py

I'm trying to use the pyfacebook functions (https://github.com/sciyoshi/pyfacebook/) in a Google app engine project. I've followed the advice on the Facebook developer forum ...
0
votes
0answers
607 views

Update status facebook using python

i'm trying the solve problem update status using facebook API with pyfacebook so i look at here http://stackoverflow.com/questions/1907662/update-facebook-pages-status-using-pyfacebook and i think ...
0
votes
1answer
138 views

pyfacebook doesn't have set_status in that object anymore?

i just try this import facebook fb = facebook.Facebook('YOUR_API_KEY', 'YOUR_SECRET_KEY') fb.auth.createToken() fb.login() fb.auth.getSession() fb.set_status('Checking out StackOverFlow.com') and ...
0
votes
1answer
113 views

PyFacebook with Pylons

I'd like to implement PyFacebook in my Python + Pylons application. Where should I include the package? What's the cleanest way to import it? What directory should I put the files in? Thanks!
0
votes
1answer
212 views

How to get latest facebook status in python?

I need to be able to get the latest facebook status update of an user that has allowed consent. Is there a way to do this with pyfacebook without having to have the user login in facebook?
0
votes
2answers
107 views

why my facebook content can't come back. i used pyfacebook

i follow this article step by step http://wiki.developers.facebook.com/index.php/User:PyFacebook_Tutorial#Add_the_middleware 1。 2。 3。 i want to return my site, but it login facebook,how to ...
0
votes
1answer
624 views

how to debug facebook app/django setup (url is not valid…)

I'm trying to set up a facebook app using django by following this tutorial: http://www.rkblog.rk.edu.pl/w/p/example-facebook-application-django/ . I get to the point where I start my development ...
0
votes
2answers
713 views

Having trouble importing middleware classes in App Engine / Django

Trying to get facebook connect to work on app engine, and so I'm following these instructions: http://www.slideshare.net/mrtrosen/lab305-django-facebook-connect-integration-example One of the steps ...