1
URL에서 Venue ID를 가져올 수 있습니까?Foursquare URL에서 Venue ID 받기
내가 Foursquare (예 : https://pt.foursquare.com/zahpee)의 Venue URL을 가지고 있다면,이 위치의 회장 ID가 무엇인지 어떻게 알 수 있습니까?
감사합니다.
URL에서 Venue ID를 가져올 수 있습니까?Foursquare URL에서 Venue ID 받기
내가 Foursquare (예 : https://pt.foursquare.com/zahpee)의 Venue URL을 가지고 있다면,이 위치의 회장 ID가 무엇인지 어떻게 알 수 있습니까?
감사합니다.
4SQ URL을 사용하여 해결책을 모릅니다. 그러나 URL 스키마를 알고있을 때 - 장소 ID에 액세스 할 수 있습니다.
response: {
venues: [
{
id: "4fc123f4e4b08acecb574b62"
name: "Zahpee"
contact: {
phone: "+553125164812"
formattedPhone: "+55 31 2516-4812"
twitter: "zahpee"
}
location: {
address: "Avenida Álvares Cabral, 1315"
crossStreet: "Santa Catarina"
lat: -19.931101175274925
lng: -43.94602344328842
cc: "BR"
city: "Belo Horizonte"
state: "MG"
country: "Brazil"
formattedAddress: [
"Avenida Álvares Cabral, 1315 (Santa Catarina)"
"Belo Horizonte, MG"
"Brazil"
]
}
이 API 탐색기를 사용하여 쉽게 확인 : 추출물
GET https://api.foursquare.com/v2/venues/search?query=zahpee&intent=global
예를 응답 :
zahpee = 해당 정보로 장소
의 이름 당신은 seach을 수행 할 수 있습니다
https://developer.foursquare.com/docs/explore
도움이되기를 바랍니다.