Facebook API 人物搜索按国家/地区过滤
我正在尝试使用 Facebook API(Graph API 或 FQL,以有效者为准)搜索人员。 到目前为止,它工作得很好,但我无法按国家或语言对其进行过滤。
我目前正在检索此 URL:
'https://graph.facebook.com/search?q=' . somename . '&type=user&access_token=' . $access_token
我已尝试添加 &locale=... 但这也不起作用。
I'm trying to search people using the Facebook API (Graph API or FQL, whichever works).
Up to this point, it's working just fine but I can't get it to be filtered by country or language.
I'm currently retrieving this URL:
'https://graph.facebook.com/search?q=' . somename . '&type=user&access_token=' . $access_token
I have tried adding &locale=... but that didn't work either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个:
try this:
我没有找到根据区域设置进行过滤的方法,但有一种方法可以使区域设置字段包含用户信息:
I didn't find a way to filter according to a locale but there is a way to have the locale field with users informations :
更复杂的方法之一是从以下位置获取数据:
您也可以从此链接获取数据,但它需要您登录
描述参数:
one of the more sophisticated methods is by fetching data from
You can also fetch data from this link but it requires you logged in
describing parameters :
Facebook 的 API 似乎无法实现这一点。
It seems this is not possible with Facebooks API.