0

我的功能是:

function CallAfterLogin()
{
   FB.login(function(response) 
   { 
       if (response.status === "connected")
       {
           LodingAnimate(); //Animate login
           FB.api('/me', function(data) 
           {
              console.log(data);
              if(data.email == null)
              {
                   alert("You must allow us to access your email id!");
                   ResetAnimate();
              }
              else
              {
                   AjaxResponse();
              }
           });
       }
   });
} 

我不想在控制台上写,而是想在浏览器中显示数据,怎么做?我试过了$("#mydiv").text(data);$("#mydiv").html(data);这不起作用。

me/movies给出错误:

您必须允许我们访问您的电子邮件 ID

4

1 回答 1

1

你可以添加scope这样的 -

FB.login(function(response) 
{ 
}, {scope: 'user_interests, user_likes, etc..'}); 
于 2013-08-12T10:45:58.010 回答