【发布时间】:2016-03-01 01:43:16
【问题描述】:
我正在尝试将消息发布到业务页面的墙上。我遵循以下steps 并且一切正常,除了我没有以管理员身份在业务墙上发布消息。
graph = facebook.GraphAPI(access_token='xxx')
如果我使用graph.put_wall_post(message='test'),我会在我的个人墙上发布文本。
使用业务页面的个人资料 ID,graph.put_wall_post(message='test', profile_id='5537xx') 我发布类似 Me > business page 的内容
如果我尝试使用业务页面创建应用程序,我会收到以下错误:
Users not logged into their personal account cannot access developers.facebook.com
如何将消息作为文本帖子直接发布到我的业务页面而不会出错?
【问题讨论】:
标签: python facebook facebook-graph-api facebook-sdk-4.0