我正在使用这个http://blog.carduner.net/2011/09/06/easy-facebook-scripting-in-python/通过 python 与 facebook 的图形 api 交互。
我的问题是我似乎无法将照片上传到粉丝页面。相反,它会上传到我的墙上。但是,我可以在粉丝页面上发表评论。
from urllib import urlretrieve
import imp
urlretrieve('https://raw.github.com/gist/1194123/fbconsole.py', '.fbconsole.py')
fb = imp.load_source('fb', '.fbconsole.py')
fb.AUTH_SCOPE = ['publish_stream', 'manage_pages']
fb.authenticate()
fb.graph_post("/<fan page id>/photos", {"message":"My photo", "source":open("photo.jpeg")})
其他人在将照片上传到粉丝页面时遇到问题吗?