Update Status Facebook mit Python

Ich versuche, den Status der Problembehebung mithilfe der Facebook-API mit @ zu aktualisierepyfacebook. Also ich schau mal hier beiUpdate den Status der Facebook-Seite mit pyfacebook und ich denke funktioniert nicht mehr.

Nun, endlich löse ich das Problem:

#!/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    

Antworten auf die Frage(0)

Ihre Antwort auf die Frage