Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有页面的身份验证令牌。我想更新我的页面属性,例如is_webhooks_subscribed. 我可以在 Graph API Explorer 中毫无问题地做到这一点。
is_webhooks_subscribed
这是有关页面更新端点的文档
如何在 Koala gem 中使用 Graph API 来做到这一点?
最终阅读了gem源代码。找到api方法,注释为:你很少需要直接调用这个方法。
api
解决方案:
graph = Koala::Facebook::API.new(page_auth_token) graph.api('me', { is_webhooks_subscribed: true }, 'post')