up vote 2 down vote favorite
1
share [g+] share [fb]

Is there an easy way to update my Facebook status ("What's on your mind?" box) using Python code ?

link|improve this question

feedback

protected by Will Sep 22 '10 at 13:29

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

2 Answers

up vote 11 down vote accepted

Check out PyFacebook which has a tutorial, from... Facebook!

Blatantly ripped from the documentation on that page and untested, you'd probably do something like 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')
link|improve this answer
Well, in my case fb object doesn't have set_status method. Why is that? Can you please throw some light on this? – aatifh Dec 15 '09 at 11:43
1  
same here.. fb foesnt have a object "set_status" – Abhijeet Rastogi Mar 12 '10 at 21:54
If your Facebook object doesn’t have a set_status method, open another question asking about it. – Paul D. Waite Sep 21 '10 at 17:07
feedback

The Facebook Developers site for Python is a great place to start. You should be able to accomplish this with a REST call.

http://wiki.developers.facebook.com/index.php/Python

link|improve this answer
Hey!! This link seems to be expired .. Please suggest a new one or good source like that! – Mojo_Jojo May 11 '11 at 14:34
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.