我想做一个服务器端的签到。我有坐标,它是经纬度的;我知道公司的名称和街道地址。有没有办法获得参数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)));发布于 2012-08-29 06:45:36
如果您知道经度坐标,为什么不使用Graph API来获取数据-例如- https://graph.facebook.com/search?type=place¢er=37.76,-122.427&distance=1&access_token=...
这来自于这里的Graph API文档- https://developers.facebook.com/docs/reference/api/
https://stackoverflow.com/questions/8236103
复制相似问题