Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 476 Bytes

oauth2requesttokenrequestbody.md

File metadata and controls

26 lines (19 loc) · 476 Bytes

Oauth2RequestTokenRequestBody

Supported Types

components.AuthorizationCodeTokenRequest

const value: components.AuthorizationCodeTokenRequest = {
  clientId: "<id>",
  clientSecret: "<value>",
  code: "<value>",
  redirectUri: "https://bleak-makeover.biz/",
};

components.RefreshTokenRequest

const value: components.RefreshTokenRequest = {
  clientId: "<id>",
  clientSecret: "<value>",
  refreshToken: "<value>",
};