2 réponses
- Le plus récent
- Le plus de votes
- La plupart des commentaires
1
You need to send a POST request with your refresh token to the Cognito token endpoint.
ℹ️ In the previous link you will find some examples of requests and responses
1
Thank you, @Osvaldo Marte.
Request:
curl --location 'https://{your-cognito-domain}.auth.{aws-region}.amazoncognito.com/oauth2/token' \
--header 'Authorization: Basic {Base64Encode(client_id:client_secret)}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=refresh_token' \
--data-urlencode 'refresh_token={your_refresh_token}'
The response will be:
{
"id_token": "{id_token}",
"access_token": "{access_token}",
"expires_in": 3600,
"token_type": "Bearer"
}
répondu il y a 7 mois
Contenus pertinents
- demandé il y a 9 mois
- demandé il y a 2 ans
- Réponse acceptéedemandé il y a 2 ans
- AWS OFFICIELA mis à jour il y a 2 ans
- Comment puis-je modifier les attributs d’un groupe d’utilisateurs Amazon Cognito après sa création ?AWS OFFICIELA mis à jour il y a 7 mois
- AWS OFFICIELA mis à jour il y a 2 ans