如何验证NodeJS上的AWS Cognito Access Token

时间:2017-08-20 04:29:53

标签: node.js amazon-web-services amazon-cognito

我找到了一个关于如何verify Cognito access tokens with Python的例子。我如何对NodeJS做同样的事情?没有SDK功能吗?

到目前为止我已经

authorizeCognitoJwt(token) {
    const COGNITO_POOL_ID = 'ap-southeast-1_xxx'
    const COGNITO_JWT_SET = {
    'keys': [
        {
        'alg': 'RS256',
        'e': 'AQAB',
        'kid': 'ChkV+...=',
        'kty': 'RSA',
        'n': 'tkjexS...johc5Q',
        'use': 'sig'
        },
        {
        'alg': 'RS256',
        'e': 'AQAB',
        'kid': 'Ve...Eb8dw6Y=',
        'kty': 'RSA',
        'n': 'hW19H...0c9Q',
        'use': 'sig'
        }
    ]
    }
    const decodedJwt = jwt.decode(token, {complete: true})
    console.log(decodedJwt)

    if (decodedJwt.payload.iss !== `https://cognito-idp.us-east-1.amazonaws.com/${COGNITO_POOL_ID}`) {
    return 'INVALID_ISSUER'
    }

    if (decodedJwt.payload.token_use !== 'access') {
    return 'INVALID_TOKEN_USE'
    }

    var jwtKey = COGNITO_JWT_SET.keys.find(k => k.kid === decodedJwt.header.kid)
    if (!jwtKey) {
    return 'INVALID_TOKEN_KID'
    }

    var verifiedKey = jwt.verify(token, /* how do I get the key? */)

    return 'VALID'
}

但是我如何从COGNITO_JWT_SET

获取密钥

1 个答案:

答案 0 :(得分:2)

您可以使用this网址获取COGNITO_JWT_SET

请参阅AWS Mobile Blog中的博客文章Integrating Amazon Cognito User Pools with API Gateway,以获取包含代码的完整示例。