2015-04-05 155 views
2

因此,我正在嘗試使用網址獲取較大的Facebook個人資料圖片。當使用此URL使用網址獲取大的Facebook個人資料圖片

https://graph.facebook.com/v2.3/10153207714499645/picture?access_token=<access token> 

我得到一個50x50的圖像。然而,當我添加變量?type=large,我得到

{ 
    "error": { 
     "message": "(#100) type must be one of the following values: small, normal, album, large, square", 
     "type": "OAuthException", 
     "code": 100 
    } 
} 

我的URL看起來像這樣

https://graph.facebook.com/v2.3/10153207714499645/picture?type=large?access_token=<access token> 

回答

4

你應該使用&而非?參數之間。

https://graph.facebook.com/v2.3/10153207714499645/picture?type=large&access_token=<access token>  
相關問題