我正在使用Foursquare API编写Android应用程序。我正在尝试向此网址发出请求:
String url = "https://api.foursquare.com/v2/venues/search?ll=16.31503,38.973039&"
+"client_id="+CLIENT_ID+"&client_secret="+CLIENT_SECRET+"&limit=25&v="+date;
其中日期格式为YYYYMMDD。我实际上有一个响应,但venues
数组是空的:
{
meta: {
code: 200
}
notifications: [
{
type: "notificationTray"
item: {
unreadCount: 0
}
}
]
response: {
venues: [ ]
}
}
为什么它是空的?
答案 0 :(得分:1)
这是因为遗憾的是,您搜索的区域并不多。请查看在网络上运行相同搜索的结果:https://foursquare.com/explore?near=16.31503%2C38.973039(缩小一点看看哪里有结果)
答案 1 :(得分:0)
我将经度与纬度相混淆,反之亦然。我的错!谢谢(: