1

我实现了图形 API 来搜索页面。( &type=page) API 大约 2 天前停止提供结果,而我的代码没有被更改。我从 REST 请求中得到的https://graph.facebook.com/search?q={query}&type=page&limit=50&access_token={token} 只是:

{
   "data": [

   ]
}

有人有类似问题吗?提前感谢您对此的任何评论。

编辑:
好的......这开始变得神秘了。使用 Facebook API 资源https://developers.facebook.com/tools/explorer/
管理器,我输入了从任何其他客户端(我自己的浏览器、正常发送请求的服务器、Firefox 的 REST 客户端应用程序)运行的完全相同的查询,然后再次:所有返回空白,除了那个来自官方资源管理器,提供一流的结果。
所以它可能不是访问令牌,可能不是查询本身(因为它已经过测试)。
嗯...是时候提交错误报告了吗?您还想到了哪些其他解密正在发生的事情的方法?

4

1 回答 1

0

I searched the graph api in similar ways earlier using a script I've made. The scripts purpose was to try to find fanpages for a given company. I wanted to narrow down the number of results so the query included the city which the company was located. This script worked fine just before christmast atleast. Today I fired it up again, something had changed. First the search required an access_token, second it returned an empty resultset. I can no longer include the company city in the query, as this turns out to not find anything. If I search for the company name I get results, but far to many of them.

于 2013-04-18T15:29:35.437 回答