我想执行一个从Facebook返回用户和页面列表的搜索操作。
我正在使用Graph API,但它不允许我这样做。
https://graph.facebook.com/search/?q=shakira&type=user&access_token={access_token}
API只允许使用type={type}
的1个参数。
我如何在Graph API中指定它们?
答案 0 :(得分:1)
无法一次搜索两种类型。您需要使用type=user
和type=page
拨打两个不同的电话。
https://developers.facebook.com/docs/graph-api/using-graph-api#search
您可以使用批量请求来加快速度:https://developers.facebook.com/docs/graph-api/making-multiple-requests