Google Places API에 누락 된 데이터 문제가 있습니다! 아래 예에서 볼 수 있듯이 휴대 전화 번호, 대체 전화 번호, 팩스 전화와 같은 Google 장소 추가 정보는 Google지도 검색 결과에는 표시되지만 Google Places API에는 표시되지 않습니다.Google Places API에 누락 된 데이터 문제
이 링크를, 당신은 추가 대체 전화 번호를 알 수 모바일 :
www.google.com/maps/place?cid=4256683212236351718 & Q = 함자 + kamaleddine + 홈 & HL = EN & VED = 0CBQQ-gswAA & 사 = X & EI = cO4wT4arE8Wp8QOZqITuDA
하지만 (아래의 HTTP 요청을 사용하여) Google 지역 정보 API를 사용하여, 내가 검색하고 다음과 같은 JSON 개체 :
플레이스 세부 응답 (JSON) : 당신이 알 수 있듯이
{
"html_attributions" : [],
"result" : {
"address_components" : [
{
"long_name" : "Aley",
"short_name" : "Aley",
"types" : [ "locality", "political" ]
},
{
"long_name" : "LB",
"short_name" : "LB",
"types" : [ "country", "political" ]
},
{
"long_name" : "1000",
"short_name" : "1000",
"types" : [ "postal_code" ]
}
],
"formatted_address" : "Ain Al Jdide Road, طريق عين الجديدة, Aley, Lebanon",
"formatted_phone_number" : "70 975 590",
"geometry" : {
"location" : {
"lat" : 33.8113420,
"lng" : 35.619370
}
},
"icon" : "http://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png",
"id" : "a1063b63d187a576cf420e459aca9141e46bb8b6",
"international_phone_number" : "+961 70 975 590",
"name" : "Hamza Kamaleddine - Home",
"reference" : "...",
"types" : [ "establishment" ],
"url" : "http://maps.google.com/maps/place?cid=4256683212236351718",
"vicinity" : "Ain Al Jdide Road, طريق عين الجديدة, Aley",
"website" : "http://lb.linkedin.com/in/hkamaleddine"
},
"status" : "OK"
}
, 휴대 전화 번호, 대체 및 팩스 번호가 누락되었습니다!
이 문제를 해결하는 방법은 무엇입니까?
많은 감사!