获取Facebook页面的所有信息
我想将非公开信息恢复到 C# 中应用程序“桌面”的 Facebook 页面,但我不知道如何操作。我是否必须通过用户允许的 Facebook 应用程序,还是让 Facebook 用户拥有 access_token 并基于此显示页面?仅供参考,我使用我得到的图表(和 JSON),我选择这个版本作为“公共”组: https://graph.facebook.com/283774678311430
I would like to recover the non-public information to a facebook page for an application "desktop" in C # and I do not know how. Do I have to go through a Facebook application that the user allow or do I get the Facebook user to have a access_token and display the page based on this one? FYI I use graph (and a JSON) that I get, I picked up this version as the "public" group:
https://graph.facebook.com/283774678311430
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您需要一个应用程序来让用户授予查看页面的权限或让页面所有者授予访问权限
相同的答案,使用页面所有者作为用户调用
/me/accounts
并获取页面访问令牌。Yes, you need an application to let the user give access to view the page or have the page owner give access
Same answer, use the page owner as the user call
/me/accounts
and grab the page access token.