Facebook 签到:如何查找地点 ID

发布于 2024-12-18 02:01:51 字数 340 浏览 1 评论 0原文

我想做一个服务器端签入。我有坐标,它是经纬度;我知道该企业的名称和街道地址。有没有办法获取参数 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春风十里 2024-12-25 02:01:51

如果您知道经纬度坐标,为什么不使用 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文