FB.api('/ me / photos',函数(结果){}在Safari中不返回任何内容

时间:2012-03-12 12:10:03

标签: facebook safari

$('#login').live('click',function(e){
                        $(this).hide();
                        login();        
                    });

                    // login
                    function login(){
                        FB.login(function(response) {
                            if (response.authResponse != 'undefined' && response.authResponse != null) {
                                FB.getLoginStatus(function(response) {
                                    // remember user ID
                                    uID = response.authResponse.userID;
                                    if(uID) getMostTagged();
                                });                                                                                                                 
                            } else { alert('User cancelled login or did not fully authorize.'); }
                        },{scope: 'user_photos,user_videos,user_photo_video_tags'});
                    }

                    // get friend with most pic tags
                    function getMostTagged(){   
                        FB.api('/me/photos', {fields: 'tags'}, function(result) {
   console.log(result);                         
}

问题是Safari中的结果没有任何内容,而它在Firefox和Chrome中运行良好......

1 个答案:

答案 0 :(得分:0)

抱歉,我使用错误的Facebook ID登录,这就是为什么我无法得到任何东西。