用于获取状态详细信息的 Facebook 图形 api 不起作用
我能够在用户墙上成功发布消息:),从代码中我试图获取通过我的应用程序发布的状态详细信息。
这是我在用户墙上发布的状态消息的 ID:557671002_10150464779501003。 当我尝试通过访问获取有关状态消息的详细信息时: https://graph.facebook.com/557671002_10150464779501003 ,我得到的结果为 false。 如何获取状态详细信息。
I am able to post a message successfully on a USER wall :) , from the code I am trying to get the status detail which posted thru my application .
Here is the Id for the status message I post on user wall : 557671002_10150464779501003.
When I try get the details about the status message by accessing : https://graph.facebook.com/557671002_10150464779501003 , I get a result as false.
How to get details of status.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须依次请求
read_stream
权限从用户提要的帖子中提取信息。You have to request the
read_stream
permission in order to extract information from a post on a users feed.尝试使用访问令牌获取它:
https://graph.facebook.com/557671002_10150464779501003?access_token={a valid access token}
Try grabbing it using the access token:
https://graph.facebook.com/557671002_10150464779501003?access_token={a valid access token}