你怎么在Meteor上获得Twitter个人资料图片?

mon*_*oni 0 twitter meteor

我正在使用Meteor进行一个项目.人们可以使用Twitter登录.我想知道是否有办法在Accounts.onCreateUser中从Twitter获取某人个人资料图片.这就是我的意思:

Accounts.onCreateUser(function(options, user) {

   var twitterInfo =  user.services.twitter;

   if (options.profile){

        options.profile.createdAt = new Date();//now!
        options.profile.twitterId = twitterInfo.id;
        options.profile.username = twitterInfo.screenName;
        options.profile.name  = options.profile.name;
        user.profile = options.profile; 
   }

    return user;
}); 
Run Code Online (Sandbox Code Playgroud)

谢谢!

pah*_*han 6

使用twitter api 1.0弃用.接受的答案不再有效.

Meteor.user().services.twitter.profile_image_url 
Run Code Online (Sandbox Code Playgroud)

为我工作.