我创建了一个流星应用并添加了accounts-facebook包。我可以使用{{loginButtons}}从Chrome本地和其他计算机上登录到网站 - 但是,当我尝试通过Android(在同一网络上)登录时,facebook弹出报告:HTTP 500错误。
我的服务器端js看起来像这样:
Meteor.startup(function () {
// code to run on server at startup
try{
Accounts.loginServiceConfiguration.remove({
service : "facebook"
});
Accounts.loginServiceConfiguration.insert({
service : "facebook",
appId : xxxx,
secret : xxxxxxxxxxxxxxxxxx
});
Accounts.onCreateUser(function(options, user) {
console.log('creating user');
//Do create stuff here
// We still want the default hook's 'profile' behavior.
if (options.profile)
user.profile = options.profile;
return user;
});
}catch(err){
console.log(err.message);
}
});
有什么建议吗?
非常感谢。