在meteor中使用DDP.connect()登录用户

时间:2013-11-07 07:19:16

标签: meteor

我正在尝试使用DDP.connect()连接两个不同的流星应用程序。 我应该如何使用DDP.connect()?

对用户进行身份验证

1 个答案:

答案 0 :(得分:6)

您可以通过以下方式进行身份验证:

var DDPConnection = DDP.connect(<url>);

DDPConnection.call("login", {
                             "password":"qwerty",
                             "user" : {
                                     "email":"email@email.com"
                                 }
                             },
                             function(err,result) {
                                 //Check result
                             }
                  );

根据您有/想要使用的设置,在不同的登录选项中查看我的其他answer