2012-12-28 33 views

回答

0

如果你想獲得準確的圖像大小,你可以嘗試FQL查詢

$fql="SELECT id, width, height, url, is_silhouette, real_width, real_height FROM profile_pic WHERE id=me() AND height=260 AND width=194"; 

$avt = $facebook->api(array(
         'method'=>'fql.query', 
         'query' =>$fql, 
         )); 
$avt = & $avt[0]['url']; 

我使用PHP,你可以學到更多here

2

使用此:

http://graph.facebook.com/[page id/profile id]/picture?type=large 
+1

我想要原始圖像.http://graph.facebook.com/ [page id/profile id]/picture?type = large僅給出調整大小的圖像。 – user1645198

相關問題