0
我檢查文檔https://developer.foursquare.com/docs/Foursquare的API得到過濾的餐館
而且可以看到的信息如何獲取有關場地的一些數據表,但沒有說明如何讓場館的名單。例如,我需要獲得洛杉磯所有餐廳的名單,我該怎麼辦?如果它是可能的。
謝謝!
我檢查文檔https://developer.foursquare.com/docs/Foursquare的API得到過濾的餐館
而且可以看到的信息如何獲取有關場地的一些數據表,但沒有說明如何讓場館的名單。例如,我需要獲得洛杉磯所有餐廳的名單,我該怎麼辦?如果它是可能的。
謝謝!
可以使用v2/venues/search
端點。 https://developer.foursquare.com/docs/venues/search
例如
https://api.foursquare.com/v2/venues/search? categoryId=4d4b7105d754a06374d81259 // food category &near=Los+Angeles &limit=50 // up to 50 &oauth_token=(YOUR_OAUTH_TOKEN) &v=20170901
這是很難得的ALL餐廳在洛杉磯的列表中,因爲limit
參數是高達50
使用v2/venues/categories
端點得到categoryId
列表。 https://developer.foursquare.com/docs/venues/categories
- Food (4d4b7105d754a06374d81259) - Afghan Restaurant (503288ae91d4c4b30a586d67) - American Restaurant (4bf58dd8d48988d14e941735) - Chinese Breakfast Place (52af3a903cf9994f4e043bee) ...