Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Refresh Request

https://tools.ietf.org/html/rfc6749#section-6

POST /uas/oauth2/token

Required parameters

  • grant_type = refresh_token

For refresh token request the value must be set to "refresh_token"

  • refresh_token

Refresh Token value is received in Access token response. Refer to chapter Access Token Response in Authorization code grant and web single sign-on - SSO.

  • scope

Must use same value that was used with authorization request or token request. Refer to chapter Authorization Request in Authorization code grant and web single sign-on - SSO

  • client_id, client_secret


Sample refresh request
POST https://sso.example.com/uas/oauth2/token Content-Type: application/x-www-form-urlencoded
grant_type=refresh_token&refresh_token=5GUxtinzXLYdFAq2MchL2sWw&scope=openid&client_id=1762414374&client_secret=***

Refresh Response

See Authorization Response on pageĀ Authorization code grant and web single sign-on

  • No labels