Facebook GET /v2.6/{friend-list-id}/members在API v2.6中返回空白

时间:2016-06-22 05:14:45

标签: javascript facebook facebook-graph-api facebook-javascript-sdk facebook-graph-api-v2.6

FB.login(function(response){

 console.log('Welcome!  Fetching your information.... ');
  FB.api(
    "/me/friendlists",
    function (response) {
      if (response && !response.error) {          
          $.each(response.data, function (key,value) {           
               //console.log(value.id);        
                 FB.api(
                    "/"+value.id+"/members",
                    function (response) {
                      if (response && !response.error) {

                          console.log(JSON.stringify(response));
                        /* handle the result */
                      }
                    }
                );            
          });    
          console.log(JSON.stringify(response));
        /* handle the result */
      }
    }
);

我正在使用此代码在facebook最新API中获取好友列表。 返回时返回空白数组。我得到了所有的FriendList Id。但是在呼叫/成员返回空白后。

我正在测试“测试应用程序并使用'read_custom_friendlists'权限”

1 个答案:

答案 0 :(得分:0)

我想你想得到一个朋友列表?您只能通过JasperDesign design = JRXmlLoader.load( ( (RepositoryService) StaticApplicationContext.getApplicationContext() .getBean( "repositoryService" ) ) .getResourceData( JasperServerUtil.getExecutionContext() , "repo:/some/where/subreport.jrxml" ) .getDataStream() 权限获得授权您的应用的朋友,这将是API调用:user_friends

更多信息:Facebook Graph Api v2.0+ - /me/friends returns empty, or only friends who also use my app