自动向应用程序用户发布流(提要)
我如何随时向我的应用程序用户发布流 ($facebook->api('/me/feed', 'post', $attachment);
)。我想我可以通过 $facebook->getAccessToken();
获取访问令牌,但是之后,我如何发布到墙上?
How can i post stream ($facebook->api('/me/feed', 'post', $attachment);
) to my app users on anytime. I think i can get access token via $facebook->getAccessToken();
but after, how can i post to wall?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
授予
publish_stream
权限并使用其后的用户 ID 而不是me
:有关详细信息,请检查对此的最后编辑 (EDIT 4) 答案(另请关注我链接到的其他答案的讨论) 。
Grant the
publish_stream
permission and use the user id after that instead ofme
:For more information, check the last edit (EDIT 4) on this answer (also follow the discussion on the other answer that I linked to there).
第一:查看会话是否有效
第二 - 如果有效,您将调用 API 来发布
很简单,只需复制上面看到的所有代码即可应该解决这个问题。
First: See if the session is valid
Second - IF it is valid, you will make the API call to post
It's simple, just copy all the code you see above, it should work out the box.