LoginSignup
1
0

More than 1 year has passed since last update.

AWS Cognito の JSON Web キーセット を取得

Posted at

次のページを参考にしました。
JSON web トークンの検証

REGION="ap-northeast-1"
USER_POOL_ID="ap-northeast-1_123abcdef"

ISSUER=https://cognito-idp.${REGION}.amazonaws.com/${USER_POOL_ID}
JWKS_URL=${ISSUER}/.well-known/jwks.json

wget ${JWKS_URL}

実行すると、
jwks.json がダウンロードされます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0