是否有可能獲得facebook位置的緯度和經度? 當我獲取用戶對象爲我的fb帳戶是在JSON從facebook獲取lat和lon
["location":{"id":"106423786059675","name":"Buenos Aires, Argentina"}].
那麼清楚,如果我能查詢的位置ID 106423786059675的緯度和經度將是巨大的。
是否有可能獲得facebook位置的緯度和經度? 當我獲取用戶對象爲我的fb帳戶是在JSON從facebook獲取lat和lon
["location":{"id":"106423786059675","name":"Buenos Aires, Argentina"}].
那麼清楚,如果我能查詢的位置ID 106423786059675的緯度和經度將是巨大的。
您是否嘗試檢查該頁面的詳細信息的API?
http://graph.facebook.com/106423786059675
返回大量的信息,甚至無需訪問令牌,包括:
「位置」:{ 「緯度」:-34.6033, 「東經」:-58.3817} ,
如果你正在使用PHP,你可以這樣做:
$fb_location_id = 'LOCATION_ID';
$jsonurl = 'http://graph.facebook.com/'.$fb_location_id;
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
// the latitude
$fb_latitude = $json_output->location->latitude;
// the longitude
$fb_longitude = $json_output->location->longitude;
不,在你告訴我之前,我沒有勉強。這是偉大的,你可以打賭,我是gona使用它。你不知道我有多喜歡你的小費。非常感謝你。 – mdev