facebook入住:如何查找地点ID

时间:2011-11-23 01:04:24

标签: facebook-graph-api checkin

我想要进行服务器端签入。我有坐标,这是lat-long;我知道这个企业的名称和街道地址。有没有办法获得参数Parameter.with(“place”,1234)的placeId?

FacebookType publishCheckinResponse = facebookClient.publish("me/checkins",
  FacebookType.class, Parameter.with("message", "I'm here!"),
    Parameter.with("coordinates", coordinates), Parameter.with("place", 1234)));

1 个答案:

答案 0 :(得分:2)


如果您知道lat-long坐标,为什么不使用Graph API来获取数据 - 例如 - https://graph.facebook.com/search?type=place&center=37.76,-122.427&distance=1&access_token= ...
这来自此处的图谱API文档 - https://developers.facebook.com/docs/reference/api/