是否可以使用 Facebook API 返回在一个国家/地区拍摄的所有照片?
Facebook 已经做了类似的事情:
facebook.com/search/ ID-OF-STATE /photos-in/no-reshares/me/friends/photos-2/intersect
例如
https://www.facebook.com/search/112841558741846/photos-in/no-reshares/me/friends/photos-2/intersect
是否可以使用 Facebook API 返回在一个国家/地区拍摄的所有照片?
Facebook 已经做了类似的事情:
facebook.com/search/ ID-OF-STATE /photos-in/no-reshares/me/friends/photos-2/intersect
例如
https://www.facebook.com/search/112841558741846/photos-in/no-reshares/me/friends/photos-2/intersect
对于您的应用程序的用户或他们的朋友(取决于您要求的权限),您可以使用 FQL
https://developers.facebook.com/docs/reference/fql/location_post
尝试关注
select post_id from locaiton_post where author_uid=(select uid from <>) and type="photo"
我试过做同样的事情,我认为目前不可能。
location_post 周到的猴子引用将不起作用,因为它仅限于以下帖子:
根据:https ://developers.facebook.com/docs/reference/fql/location_post
我到处寻找它,但找不到方法。看起来 facebook 的“photos-in”查询目前仅限于 facebook 使用。