Facebook API 读取层支持哪些端点

发布于 2024-11-05 07:17:52 字数 413 浏览 2 评论 0原文

Facebook 最佳实践文档称,Facebook API 有一个只读层,使用它可以提高性能。

http://developers.facebook.com/docs/best-practices/

它不不包含任何链接或有关支持哪些端点的信息。显然,“综合列表”位于 PHP SDK 中。

我没有 PHP SDK,也不是在 PHP 上进行开发。当我访问 PHP SDK Git 时,我发现整个 wiki 已被删除,并且指向包含文档的页面(在 wiki 上给出)的链接没有提及任何有关只读 api 端点的内容。

有人使用过 Facebook 只读 api 吗?您能告诉我支持哪些端点吗?

The Facebook best practices document says that there's a read only tier for facebook API using which can result in faster performance.

http://developers.facebook.com/docs/best-practices/

It doesn't contain any link, or information as to which endpoints are supported. Apparently the 'comprehensive list' is in the PHP SDK.

I don't have the PHP SDK, and I am not developing on PHP. When I visited the PHP SDK Git, I found that the entire wiki has been deleted, and the link to the page which had the documentation (given on the wiki) doesn't say anything about the read only api endpoints.

Has anyone worked with the Facebook read only api? Can you tell me what endpoints are supported?

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

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

发布评论

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

评论(1

﹏半生如梦愿梦如真 2024-11-12 07:17:52

网址为: https://api-read.facebook.com/

支持的端点为:

  array('admin.getallocation' => 1,
        'admin.getappproperties' => 1,
        'admin.getbannedusers' => 1,
        'admin.getlivestreamvialink' => 1,
        'admin.getmetrics' => 1,
        'admin.getrestrictioninfo' => 1,
        'application.getpublicinfo' => 1,
        'auth.getapppublickey' => 1,
        'auth.getsession' => 1,
        'auth.getsignedpublicsessiondata' => 1,
        'comments.get' => 1,
        'connect.getunconnectedfriendscount' => 1,
        'dashboard.getactivity' => 1,
        'dashboard.getcount' => 1,
        'dashboard.getglobalnews' => 1,
        'dashboard.getnews' => 1,
        'dashboard.multigetcount' => 1,
        'dashboard.multigetnews' => 1,
        'data.getcookies' => 1,
        'events.get' => 1,
        'events.getmembers' => 1,
        'fbml.getcustomtags' => 1,
        'feed.getappfriendstories' => 1,
        'feed.getregisteredtemplatebundlebyid' => 1,
        'feed.getregisteredtemplatebundles' => 1,
        'fql.multiquery' => 1,
        'fql.query' => 1,
        'friends.arefriends' => 1,
        'friends.get' => 1,
        'friends.getappusers' => 1,
        'friends.getlists' => 1,
        'friends.getmutualfriends' => 1,
        'gifts.get' => 1,
        'groups.get' => 1,
        'groups.getmembers' => 1,
        'intl.gettranslations' => 1,
        'links.get' => 1,
        'notes.get' => 1,
        'notifications.get' => 1,
        'pages.getinfo' => 1,
        'pages.isadmin' => 1,
        'pages.isappadded' => 1,
        'pages.isfan' => 1,
        'permissions.checkavailableapiaccess' => 1,
        'permissions.checkgrantedapiaccess' => 1,
        'photos.get' => 1,
        'photos.getalbums' => 1,
        'photos.gettags' => 1,
        'profile.getinfo' => 1,
        'profile.getinfooptions' => 1,
        'stream.get' => 1,
        'stream.getcomments' => 1,
        'stream.getfilters' => 1,
        'users.getinfo' => 1,
        'users.getloggedinuser' => 1,
        'users.getstandardinfo' => 1,
        'users.hasapppermission' => 1,
        'users.isappuser' => 1,
        'users.isverified' => 1,
        'video.getuploadlimits' => 1);

来自: https://github.com/facebook/php-sdk/blob/master/src/facebook.php

The url is : https://api-read.facebook.com/

And the supported endpoints are :

  array('admin.getallocation' => 1,
        'admin.getappproperties' => 1,
        'admin.getbannedusers' => 1,
        'admin.getlivestreamvialink' => 1,
        'admin.getmetrics' => 1,
        'admin.getrestrictioninfo' => 1,
        'application.getpublicinfo' => 1,
        'auth.getapppublickey' => 1,
        'auth.getsession' => 1,
        'auth.getsignedpublicsessiondata' => 1,
        'comments.get' => 1,
        'connect.getunconnectedfriendscount' => 1,
        'dashboard.getactivity' => 1,
        'dashboard.getcount' => 1,
        'dashboard.getglobalnews' => 1,
        'dashboard.getnews' => 1,
        'dashboard.multigetcount' => 1,
        'dashboard.multigetnews' => 1,
        'data.getcookies' => 1,
        'events.get' => 1,
        'events.getmembers' => 1,
        'fbml.getcustomtags' => 1,
        'feed.getappfriendstories' => 1,
        'feed.getregisteredtemplatebundlebyid' => 1,
        'feed.getregisteredtemplatebundles' => 1,
        'fql.multiquery' => 1,
        'fql.query' => 1,
        'friends.arefriends' => 1,
        'friends.get' => 1,
        'friends.getappusers' => 1,
        'friends.getlists' => 1,
        'friends.getmutualfriends' => 1,
        'gifts.get' => 1,
        'groups.get' => 1,
        'groups.getmembers' => 1,
        'intl.gettranslations' => 1,
        'links.get' => 1,
        'notes.get' => 1,
        'notifications.get' => 1,
        'pages.getinfo' => 1,
        'pages.isadmin' => 1,
        'pages.isappadded' => 1,
        'pages.isfan' => 1,
        'permissions.checkavailableapiaccess' => 1,
        'permissions.checkgrantedapiaccess' => 1,
        'photos.get' => 1,
        'photos.getalbums' => 1,
        'photos.gettags' => 1,
        'profile.getinfo' => 1,
        'profile.getinfooptions' => 1,
        'stream.get' => 1,
        'stream.getcomments' => 1,
        'stream.getfilters' => 1,
        'users.getinfo' => 1,
        'users.getloggedinuser' => 1,
        'users.getstandardinfo' => 1,
        'users.hasapppermission' => 1,
        'users.isappuser' => 1,
        'users.isverified' => 1,
        'video.getuploadlimits' => 1);

From : https://github.com/facebook/php-sdk/blob/master/src/facebook.php

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