Facebook 页面的应用程序
- 我拥有一个页面
- 我拥有一个应用程序
- 我在页面上添加了该应用程序(即使它没有出现在页面的应用程序列表中:/)
是否可以使用 GraphAPI 访问页面的完整提要并从应用程序发布消息用我的应用程序的令牌?
不过,当使用我的用户令牌时,我可以完全访问此页面。
我正在使用 Koala (Ruby 语言)。这是我正在使用的代码片段:
oauth = Koala::Facebook::OAuth.new(FACEBOOK_APP_ID, FACEBOOK_APP_SECRET)
token = oauth.get_app_access_token
graph = Koala::Facebook::GraphAPI.new(token)
pp graph.get_connections(ENTRY_ID, "comments")
通过这个,我没有得到有关 ENTRY_ID 的所有评论。
- I own a page
- I own an application
- I added the application on the page (even though it does not appear on the application list of the page :/)
Is it possible to access the page's full feed and post messages from the application using the GraphAPI with the token of my application ?
I have full access to this page when using my user's token though.
I'm using Koala (in Ruby). Here's the snippet I'm using:
oauth = Koala::Facebook::OAuth.new(FACEBOOK_APP_ID, FACEBOOK_APP_SECRET)
token = oauth.get_app_access_token
graph = Koala::Facebook::GraphAPI.new(token)
pp graph.get_connections(ENTRY_ID, "comments")
With this, I do not get all the comments on the ENTRY_ID.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的应用程序必须被授予对该页面的“管理员”访问权限。更具体地说是“manage_pages”权限。作为页面的管理员,您可以授予应用程序适当的权限。
向下滚动到此页面上的“页面登录”部分。
http://developers.facebook.com/docs/authentication/
Your application has to be granted "admin" access to the page. More specifically the "manage_pages" privilege. As an admin of the page, you could grant the app the appropriate privileges.
Scroll down to the "Page Login" section on this page.
http://developers.facebook.com/docs/authentication/