Foursquare API closeByVenue 服务问题
使用 Foursquare API“Venue”服务..我正在解析 nearByVenue
详细信息,例如商店、餐厅等。
假设我收到以下链接:
https://api.foursquare.com/v1/venues.json?geolat=40.562362&geolong=-111.938689
问题是我仅获得 10 个 nearbyDetails..假设我站在纽约,应该有很多场地详细信息..为什么我只得到 10 个详细信息?
是否还有其他服务或者我使用错误的方法?
Using Foursquare API "Venue" service.. I am parsing nearByVenue
details like shop, restaurant etc.
Suppose as an example I am getting following link:
https://api.foursquare.com/v1/venues.json?geolat=40.562362&geolong=-111.938689
Issue is I am getting only 10 nearbyDetails
.. suppose I am standing in New York there should be number of venue details.. why I am getting only 10 details only?
Is there any other service or I am following wrong approach to use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加
l=n
其中 n 是查询字符串中的限制。默认限制设置为 30。Add
l=n
where n is your limit in query string. The default limit is set to 30.https:// api.foursquare.com/v1/venues.xml?geolat=40.562362&geolong=-111.938689&l=50&q=coffee
您可以更改 l="no of result" 参数的值。
如果您想搜索特定关键字,例如 ATM、咖啡
然后你可以添加参数 q 并添加它的值,如 q="atm"、q="coffee" 等。
希望对你有帮助。
https://api.foursquare.com/v1/venues.xml?geolat=40.562362&geolong=-111.938689&l=50&q=coffee
You can change the value of l="no of result" parameter.
And also if you want to search for particular keyword like ATM, Coffee
then you can add the parameter q and add it's value like q="atm", q="coffee", etc.
hope it will be helpful to you.