Integration Name: {{
res_client.name }}
Redirect URI
:
{{ res_client.redirectUrl }}
Scope
:
{{ res_client.scopes }}
Description
:
{{ res_client.description }}
Please copy below info your integration setting
Client ID
:
{{ res_client.clientId }}
Client Secret
:
{{ res_client.clientSecret }}
You can use the URL below to initiate an OAuth permission request for this
app. It is configured with
your redirect URI and app scopes. Be sure to update the state parameter.
Step-a: Launch the OAuth authorization
: Your app sends https GET
request to:
{{
res_client.authorizationUrl }}
Step-b: Use step-a response's code to exchange access token
:
When you app receives authorization code, and then wrapper(replace right
value on parameter) another https
POST request to https://api.webex.com/v1/oauth2/token?
with parameters {
"grant_type":"{{ res_client.accessTable.grant_type }}","client_id":"{{
res_client.clientId
}}","client_secret":"{{ res_client.accessTable.client_secret
}}","code":"","redirect_uri":"{{
res_client.accessTable.redirect_uri }}","code_verifier":"{{
res_client.accessTable.code_verifier }}"
}