我正在创建位于伦敦的所有餐厅的目录列表,可以通过以下网址轻松访问:
https://www.facebook.com/search/106078429431815/places-in/137670789632630/places/intersect/
然而,当我通过Graph API搜索时,我只能按短语搜索,例如“餐馆”,它只返回包含该词组“restaurant”的列表。
如何获取上述链接的Graph API表单?
答案 0 :(得分:0)
看一下这个参考。 https://developers.facebook.com/docs/places/web/search
主要位置必须使用lat& amp;郎值。 对于你的情况,你必须得到lat&伦敦的价值。
以下是列出纽约餐厅的示例查询。
/search?type=place¢er=40.7304,-73.9921&distance=1000&categories=["FOOD_BEVERAGE"]&fields=name,about,single_line_address
答案 1 :(得分:-1)
从Graph API主入口点开始
https://graph.facebook.com/v2.6/
您可以查询以下端点
search?access_token=YOURTOKEN&pretty=1&q=club&type=place&limit=25
其中q
和type
是您可能感兴趣的查询参数。