0
我試圖訪問用戶的Facebook相冊以嵌入她的網站,但我無法獲得比facebook圖表API更多的基本帳戶信息。雖然授予了權限,但無法檢索用戶照片
目前的基本代碼如下:
FB.api('/userid/albums', function(callback) {
console.log(callback);
}
// it returns a data array of length 0, at least no error
我認爲,我的應用程序沒有足夠的權限。在各種教程中,我看到人們如何設置應用程序應該請求的權限,例如相片。我似乎無法在當前設計中找到此設置。
您要求什麼權限?你見過這個:http://stackoverflow.com/questions/14965146/fb-graph-api-permissions-arent-working? –
我只是在用'FB.login();'來請求所有權限。我不知道在哪裏指定。 – aydio