我正在研究Meteor上的REST API。移动客户端将通过POST请求发送带有用户名和密码的登录请求。无论如何我可以在服务器端检查用户的信息吗?
答案 0 :(得分:1)
如果您使用Meteor的“基于帐户”的软件包,Meteor.users集合包含所有用户信息。
您应该查看Meteor帐户密码系统的来源:https://github.com/meteor/meteor/blob/master/packages/accounts-password/password_server.js
同时查看此SO帖子:Accounts.registerLoginHandler with passwords in Meteor
答案 1 :(得分:1)
您可以使用api-password
模块验证服务器端的用户名和密码:
http://beta.atmospherejs.com/package/api-password
如果您需要更多详细信息,请参阅blog post