1.我想在这里获取用户信息是我想要的信息列表(使用Facebook API): user_likes,friends_about_me,user_birthday,email,user_location,user_work_history,read_friendlists,friends_groups,user_groups
这是我的代码:
Template.user_loggedout.events({
"click #fb":function(e,tmp){
Meteor.loginWithFacebook({
requestPermissions :
['user_likes',
'friends_about_me',
'user_birthday',
'email',
'user_location',
'user_work_history',
'read_friendlists',
'friends_groups',
'user_groups']
},function (err){
if(err){
console.log("error when login with facebook " + err);
} else {
console.log("login with facebook succeeded");
}
});
},
})
但我的i最终创建了一个只包含一些字段的用户对象(来自mongoDB的用户JSON对象,为了安全起见,我在某些字段插入了“xxx”):
{
"createdAt" : 1378842117154,
"_id" : "mW7urf5yZPCm6HhNK",
"services" : {
"facebook" : {
"accessToken" : "xxxx",
"expiresAt" : 1383945305007,
"id" : "xxxxxx",
"email" : "xxxx",
"name" : "Boaz",
"first_name" : "Boaz",
"last_name" : "xxx",
"link" : "https://www.facebook.com/xxxx",
"username" : "boazmier",
"gender" : "male",
"locale" : "he_IL"
},
"resume" : {
"loginTokens" : [
{
"token" : "TcLnp9GSbDasNZNCj",
"when" : 1378842117154
}
]
}
},
"profile" : {
"name" : "Boaz xxxx"
}
}
很明显,你可以看到没有记录为friends_list,user_birthday等等。
第二个问题: 同样的事情与github - 我重新设置这个:user,public_repo,avatar_url,gist 但最终得到:
{
"createdAt" : 1378843359664,
"_id" : "pJGwTepYe2Ps7hhnS",
"services" : {
"github" : {
"id" : xxxx,
"accessToken" : "xxxxx",
"email" : "xxxxx",
"username" : "boazhoch"
},
"resume" : {
"loginTokens" : [
{
"token" : "hbNLcuC85MKwBJBfb",
"when" : 1378843359664
}
]
}
},
"profile" : {
"name" : "xxxx"
}
}
所以我最终没有头像,但在将服务器上的代码更改为:
Accounts.onCreateUser(function(options,user){
var accessToken = user.services.github.accessToken,result,profile;
result = Meteor.http.get("https://api.github.com/user", {
params: {
access_token: accessToken
}
});
if(result.error){
throw result.error
}
profile = _.pick(result.data,
"login",
"name",
"avatar_url",
"url",
"company",
"blog",
"location",
"email",
"bio",
"html_url");
user.profile = profile;
return user;
});
我的用户对象获取avatar_url为什么会这样?我知道流星出现了Account.createUser并通过onCreateUser im覆盖它然后,requestPermissions的porpse是什么?另外我只能有一个Account.onCreateUser函数,那么如何让这个函数从每个服务请求不同的数据呢? (我想包括facebook,google,github,twitter和meetup)
答案 0 :(得分:0)
您是否希望数据在客户端上可用于具有JS技能的任何人?如果是这样,将事物保存到用户记录:最简单的方法是将任何新信息添加到配置文件对象,可能在facebook上分组在facebook对象下。配置文件对象已经全部发布到客户端。 http://docs.meteor.com/#meteor_user
user.profile.prefs.color = 'red'
为了保密,当您发现不应该发送给客户端的内容时,请在服务器上的例程中进行编写和读取。见
Meteor.call()
您可以找到有关如何从服务器向客户端返回用户记录中的更多数据的代码,然后返回更多数据。在配置文件对象不足之前我不会担心。