Skip to main content

AccessTokenRequest

No description

type AccessTokenRequest {
grant_type: OAuthGrantType!
client_id: String!
client_secret: String!
code: String
refresh_token: String
redirect_uri: String
limited_scope: Boolean
}

Fields

grant_type (OAuthGrantType!)

client_id (String!)

client_secret (String!)

code (String)

Only required when using authorization_token grant type

refresh_token (String)

Only required when using REFRESH_TOKEN grant type

redirect_uri (String)

Must match the redirect URI set up with Podchaser. Only required when using authorization_token grant type

limited_scope (Boolean)