0
我正在使用Foursquare API編寫Android應用程序。我試圖向此網址發送請求:Foursquare API場館搜索返回空場地
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: [ ]
}
}
爲什麼是空的?
對我來說這似乎很奇怪!如果我嘗試從foursquare應用程序中檢查該位置(我現在在哪裏),我有一些建議!我如何得到相同的結果? –