我正在尝试使用Restivus将 REST API 添加到我的 Meteor 应用程序
我将以下代码放在 Meteor 应用程序的服务器文件夹中。目前,我正在尝试获取 URL 参数。
var Api = new Restivus({
useDefaultAuth: true,
prettyJson: true
});
Api.addRoute('login/:id/:password', {authRequired: true}, {
get:{
action: function(){
var id = this.queryParams.id;
var password = this.queryParams.password;
return {
id: id,
password: password
}
}
}
});
我收到了这个回复
{
"status": "error"
"message": "API endpoint does not exist"
}
应我的要求:
http://localhost:3000/api/login?id=BGrZbGtKZZQYr9jDR&password=myPassword