Facebook 页面的应用程序

发布于 2024-10-14 04:55:10 字数 553 浏览 4 评论 0原文

  • 我拥有一个页面
  • 我拥有一个应用程序
  • 我在页面上添加了该应用程序(即使它没有出现在页面的应用程序列表中:/)

是否可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-10-21 04:55:10

您的应用程序必须被授予对该页面的“管理员”访问权限。更具体地说是“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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文