当前位置: 代码迷 >> JavaScript >> Facebook API-不返回照片的所有字段
  详细解决方案

Facebook API-不返回照片的所有字段

热度:134   发布时间:2023-06-08 09:38:08.0

我正在使用Facebook API浏览相册,选择一个相册,然后将照片输出到我的页面上。

我已成功登录Facebook。 接受应用程序权限。 它将所有专辑输出到页面上以供选择。 我选择一个相册并将相册ID传递到输出照片的另一页。 但是响应中没有所有的照片字段,只有idcreated_time

例如:

//load fb api   
(function(d){
    var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
    if (d.getElementById(id)) {return;}
    js = d.createElement('script'); js.id = id; js.async = true;
    js.src = "//connect.facebook.net/en_US/all.js";
    ref.parentNode.insertBefore(js, ref);
}(document));

//Initialise
window.fbAsyncInit = function() {
    FB.init({
    appId      : 'XXXXXXXX',
    status     : true,
    xfbml      : true,
    cookie     : true,
    version    : 'v2.4'
   });
}

//Get albums - This works fine.
FB.api( "/me/albums", function (response) {
        if (response && !response.error) {
            data = response.data;
            //Output albums...
        }
});

我选择一个相册,然后将其传递到输出照片的页面,如下所示:

FB.api(
    "/ALBUM_ID/photos",
    function (response) {
        if (response && !response.error) {
            console.log(response);
        }
    }
);

这是它打破的地方。 日志中的输出如下所示:

Object {data: Array[1], paging: Object}
    data: Array[1]
        0: Object
           created_time: "2014-05-07T10:39:31+0000"
           id: "xxxxxxxxxxxxxxx"

就是这样。 没有其他领域。 日志中没有错误。 我不明白为什么我只得到一些数据。

Graph API v2.4减少了默认响应中的字段数。

较少的默认字段可提高性能:为了帮助提高移动网络连接的性能,我们减少了API默认返回的字段数。 现在,您应该使用?fields=field1,field2语法声明要让API返回的所有字段。

简而言之,明确说明您需要哪些字段作为请求的一部分。

  相关解决方案