如何通过foursquare api获取foursquare ID?
我将 foursquare api 集成到我的应用程序中。当我使用方法 findLocationsNearbyLatitude 时 我得到了场地 ID,但不是 foursquare id。请告诉我如何通过foursquare API获取位置的foursquare ID?非常感谢!
i integrate foursquare api in my app. and when i use method findLocationsNearbyLatitude
i get id of venues but not is foursquare id. please tell me how to get foursquare ID of location through foursquare API? thank so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用此方法并传入纬度和经度
https://developer.foursquare.com/docs/venues/search.html
这将返回一个紧凑的场地数组
https://developer.foursquare.com/docs/responses/venue.html
然后,这将提供每个场地的 foursquare id 供您使用
Call this method passing in the lat and longitude
https://developer.foursquare.com/docs/venues/search.html
this will then return a compact array of venues
https://developer.foursquare.com/docs/responses/venue.html
This will then provide the foursquare id of each venue for you to use