来自nodejs中oauth2-server错误的REST接口

时间:2015-05-31 12:01:58

标签: node.js express oauth oauth-2.0 oauth2-server

我正在使用nodejs(npm)的oauth2-server插件,并具有以下配置:

app.oauth = oauthserver({
    model: oauth.model,
    grants: ['password'],
    debug: false
});

当我GET / oauth / token没有发送任何参数(没有标题,没有查询,没有正文)时,我得到以下错误作为500 - 内部服务器错误:

{
    "name": "OAuth2Error",
    "message": "Invalid or missing grant_type parameter",
    "headers": {
        "Cache-Control": "no-store",
        "Pragma": "no-cache"
    },
    "code": 400,
    "error": "invalid_request",
    "error_description": "Invalid or missing grant_type parameter"
}

消息中的代码显示400(错误请求),我想发送的消息不是500响应而是400响应。

此外,即使我有调试,我在控制台上也会收到错误:false作为配置。我怎么能改变它?

0 个答案:

没有答案