如何使用 Graph API 专门列出用户的页面?
如何使用 Graph API 仅列出用户的页面?
我确实知道 /me/accounts
返回用户的页面和应用程序,但它还列出了某些用户共享的博客文章和其他奇怪的事情。
我可以轻松排除过滤类别与“应用程序”匹配的条目的应用程序,但对于某些用户,我得到了既不是页面也不是应用程序的其他内容。
是否有所有现有类别的列表?或者所有页面类别(希望不会改变)?
How can I specifically list only user's pages using Graph API?
I do know that /me/accounts
returns user's pages and apps, but it is also lists shared blog posts and other weird things for some users.
I can easily exclude apps filtering the entries that Category match 'Application', but for some users I got other things that are not page neither apps.
Is there some list of all existent categories? Or all page categories (that hopefully wont change)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
type=page
添加到查询参数。要获取当前用户的所有页面,您可以使用:
https://graph.facebook.com/me/accounts?type=page&access_token=user_access_token
https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Faccounts%3Ftype%3Dpage
Add
type=page
to the query parameters.To get all pages for the current user, you would use:
https://graph.facebook.com/me/accounts?type=page&access_token=user_access_token
https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Faccounts%3Ftype%3Dpage