有没有办法从Facebook使用搜索查询/关键字检索帖子?

时间:2017-08-23 00:47:29

标签: android facebook facebook-graph-api facebook-android-sdk

我尝试使用GraphAPI使用Facebook搜索查询/关键字检索各种帖子。

这就是我的尝试:

new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/search?q=solareclipse&type=post",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();

但是我收到了这个错误:

{
  "error": {
    "message": "(#11) This method is deprecated",
    "type": "OAuthException",
    "code": 11,
    "fbtrace_id": "AZD1YH0em2M"
  }
}

Facebook是否完全取消了搜索公共帖子的特权,还是有其他方式可用?

1 个答案:

答案 0 :(得分:2)

自Graph API v2.0起,无法再搜索公开帖子。

有一个公共Feed API(https://developers.facebook.com/docs/public_feed),但访问仅限于某些媒体公司。