我正在开发一个nodejs项目。 我正在使用passport.js进行身份验证,它运行正常,但是当我尝试使用soundcloud获取某些人的用户名时,我遇到了麻烦。
这是我用于在我的数据库中存储配置文件信息的代码部分:
function findOrCreateUser (accessToken, refreshToken, profile, done) {
User.findOne({ oauthID: profile.id }, function(err, user) {
if(err) console.log(err);
if (!err && user != null) done(null, user);
else {
var user = new User( {
oauthID : profile.id,
name : profile.displayName,
created : Date.now(),
pwd : 'no-pwd',
mail : '',
path : ''
});
// temporary path using mongo _id
user.path = user._id;
console.log( "familyName " + profile.familyName ); // undefined
console.log( "givenName " + profile.givenName ); // undefined
console.log( "middleName " + profile.middleName ); // undefined
console.log("displayName "+ profile.displayName ); // empty if the user didn't fill the field
if (profile.displayName == '') user.name = "Jacky Chan";
// if email exists...(i cant access it on soundcloud but i don't really need it
if(typeof(profile.emails) != 'undefined') user.mail = profile.emails[0].value;
user.save(function(err) {
if(err) {
console.log(err);
}
else {
console.log("saving user " + user.name );
done(null, user);
};
});
};
});
}
确定所以一切正常,profile.displayName根据passport.js documentation返回一个字符串。 问题是这个String是使用不需要的用户的名字和姓氏获得的,所以它通常是空的。唯一必填字段是用户名。
这张照片说明了这一点:
所以我的问题是:
如何使用passport.js获取用户名?
任何帮助非常感谢! :)
答案 0 :(得分:0)
解决!! 我不得不修改passeport-soundcloud middleware 在第88行,我更换了#34; full_name"用"用户名"提到soundcloud API documentation
:)