Каждый MAC, который я вставляю в Google Maps Geolocation API, я получаю один и тот же ответ, вот код, который я использую:
<?php
$mac = "12:34:56:78:90:AB"; //the MAC address you are looking for
$google_api = "AIzaSyAizb.................."; //my API
$data = array("macAddress"=> $mac);
$data_string = json_encode($data);
$ch = curl_init('https://www.googleapis.com/geolocation/v1/geolocate?key=' . $google_api);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_REFERER, 'http://www.turkel.com/1');
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
echo $result;
?>
И возврат всегда:
{«location»: {«lat»: 38.907230999999996, «lng»: -77.036464},
«точность»: 95000.0}
Задача ещё не решена.
Других решений пока нет …