2015-03-13 32 views

回答

0

根據Facebook的圖形API文檔,你應該做的請求如下:

/* make the API call */ 
new Request(
    session, 
    "/{album-id}", 
    null, 
    HttpMethod.GET, 
    new Request.Callback() { 
     public void onCompleted(Response response) { 
      /* handle the result */ 
     } 
    } 
).executeAsync(); 

我沒有檢查自己,但如果你想看到的專輯文檔,以及如何使用它們:https://developers.facebook.com/docs/graph-api/reference/v2.2/album

相關問題