使用Python更新状态Facebook

时间:2010-10-03 11:57:38

标签: python facebook status pyfacebook

我正在使用带有pyfacebook的facebook API尝试解决问题更新状态。所以我在这里看Update Facebook Page's status using pyfacebook,我认为不再适用了。

好吧,最后我解决了这个问题:

#!/usr/bin/python
import facebook
# Replace these with your app's credentials
api_key = 'YOUR_API_KEY'
secret_key = 'YOUR_SECRET_KEY'
client = facebook.Facebook(api_key, secret_key)
client.auth.createToken()
client.login()
print '[*] Please login / give permission application to access you . Then press enter key to continue...',
raw_input()
try:
    client.auth.getSession()
    client.request_extended_permission("publish_stream", popup=False)
    raw_input()   
    cek = client.status.set("Testing update status using facebook API with pyfacebook")
except facebook.FacebookError, e:
    print "ERROR", e    

0 个答案:

没有答案