使用 facebook 进行 Oauth 后,如何获取用户创建的页面的图表?

发布于 2024-10-04 06:52:58 字数 132 浏览 1 评论 0原文

使用 facebook 进行 OAuth 后,如何获取用户创建的页面的图表? 我搜索了 facebook 在 OAuth 之后发送给我的回调中的文档和事件搜索,我仍然无法获取用户创建的页面,我必须为此使用 FQL?如何在 Rails 中使用 FQL?

After OAuth with facebook , how do I get the graph of the pages created by user?
I search over the documentation and event search inside the callback that facebook send me after the OAuth , I still can't get the pages that the user create , I have to use FQL for this? And how do I use FQL in rails?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

弥繁 2024-10-11 06:52:58

使用 OAuth 登录后,您可以使用图形 api 查询此信息。

Facebook 为这个界面使用了一个不直观的名称——账户。您要查找的网址是 - https://graph.facebook.com/me/accounts? access_token= <你的访问令牌>

这应该列出由登录用户创建的对象的 JSON 数组。用户创建的页面将与他们喜欢的页面列表一起出现在该列表中。

You can use the graph api to query for this information after you have logged in using OAuth.

Facebook uses an unintuitive name for this interface - accounts. The URL you are looking for is - https://graph.facebook.com/me/accounts?access_token= < your_access_token >

This should list out a JSON array of objects that have been created by the logged in user. The pages created by the user will be in this list along with the list of pages that they are fans of.

岁月苍老的讽刺 2024-10-11 06:52:58

身份验证后,您会收到一个令牌。使用它来请求图形 API,并且您将根据此令牌通过用户进行身份验证。

After authentication you receive a token. Use it to request graph API and you are authenticated with user depend of this token.

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