Facebook 签到:如何查找地点 ID
我想做一个服务器端签入。我有坐标,它是经纬度;我知道该企业的名称和街道地址。有没有办法获取参数 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)));
I want to do a server-side check-in. I have the coordinates, which is lat-long; I know the name and street address of the business. Is there a way to get the placeId for the parameter Parameter.with("place", 1234)?
FacebookType publishCheckinResponse = facebookClient.publish("me/checkins",
FacebookType.class, Parameter.with("message", "I'm here!"),
Parameter.with("coordinates", coordinates), Parameter.with("place", 1234)));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您知道经纬度坐标,为什么不使用 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/
If you know the lat-long co-ordinates, why not use Graph API to get the data -
Eg - https://graph.facebook.com/search?type=place¢er=37.76,-122.427&distance=1&access_token=...
This comes from the Graph API doc here - https://developers.facebook.com/docs/reference/api/