Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

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 got this

gunslinger@c0debreaker:~$ python Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41)  [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information.
>>> import facebook
>>> fb = facebook.Facebook('MY_API_KEY', 'MY_SECRET_KEY')
>>> fb.auth.createToken() u'SECRET'
>>> fb.login()
>>> fb.auth.getSession() Traceback (most recent call last):   File "<stdin>", line 1, in <module>   File "build/bdist.linux-i686/egg/facebook/__init__.py", line 670, in getSession
       File "build/bdist.linux-i686/egg/facebook/__init__.py", line 1123, in __call__
       File "build/bdist.linux-i686/egg/facebook/__init__.py", line 1056, in _parse_response
       File "build/bdist.linux-i686/egg/facebook/__init__.py", line 1007, in _check_error
     facebook.FacebookError: Error 100: Invalid parameter
>>> fb.set_status('Checking out StackOverFlow.com') Traceback (most recent call last):   File "<stdin>", line 1, in <module> AttributeError: 'Facebook' object has no attribute 'set_status'
>>>

pyfacebook remove set_status() function in newest pyfacebook ?

share|improve this question

1 Answer

From looking at the source code, it looks like you need to use fb.status.set()

share|improve this answer
well i'll keep trying i just use that and give me facebook.FacebookError: Error 250: Updating status requires the extended permission status_update by the way thanks for info – Gunslinger_ Sep 23 '10 at 12:31
i've already solve the problem check here stackoverflow.com/questions/3849624/… thanks – Gunslinger_ Oct 3 '10 at 12:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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