Foursquare API closeByVenue 服务问题

发布于 2024-11-14 03:24:21 字数 332 浏览 3 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(2

甜柠檬 2024-11-21 03:24:21

添加 l=n 其中 n 是查询字符串中的限制。默认限制设置为 30。

https://api.foursquare.com/v1/venues.json?geolat=40.562362&geolong=-111.938689&l=10

Add l=n where n is your limit in query string. The default limit is set to 30.

https://api.foursquare.com/v1/venues.json?geolat=40.562362&geolong=-111.938689&l=10
绳情 2024-11-21 03:24:21

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.

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