@@ -2044,17 +2044,18 @@ definitions:
2044
2044
The DeclarativeOAuth Specific URL templated string to obtain the `access_token`, `refresh_token` etc.
2045
2045
The placeholders are replaced during the processing to provide neccessary values.
2046
2046
examples :
2047
- - access_token_url : https://auth.host.com/oauth2/token?{client_id_key}={{client_id_key}}&{client_secret_key}={{client_secret_key}}&{auth_code_key}={{auth_code_key}}&{redirect_uri_key}={urlEncoder:{{redirect_uri_key}}}
2047
+ - access_token_url : https://auth.host.com/oauth2/token?{client_id_key}={{client_id_key}}&{client_secret_key}={{client_secret_key}}&{auth_code_key}={{auth_code_key}}&{redirect_uri_key}={urlEncoder:{{redirect_uri_key}}}
2048
2048
access_token_headers :
2049
2049
title : (Optional) DeclarativeOAuth Access Token Headers
2050
2050
type : object
2051
2051
additionalProperties : true
2052
2052
description : |-
2053
2053
The DeclarativeOAuth Specific optional headers to inject while exchanging the `auth_code` to `access_token` during `completeOAuthFlow` step.
2054
2054
examples :
2055
- - access_token_headers : {
2056
- " Authorization " : " Basic {base64Encoder:{client_id}:{client_secret}}"
2057
- }
2055
+ - access_token_headers :
2056
+ {
2057
+ " Authorization " : " Basic {base64Encoder:{client_id}:{client_secret}}" ,
2058
+ }
2058
2059
access_token_params :
2059
2060
title : (Optional) DeclarativeOAuth Access Token Query Params (Json Encoded)
2060
2061
type : object
@@ -2063,18 +2064,19 @@ definitions:
2063
2064
The DeclarativeOAuth Specific optional query parameters to inject while exchanging the `auth_code` to `access_token` during `completeOAuthFlow` step.
2064
2065
When this property is provided, the query params will be encoded as `Json` and included in the outgoing API request.
2065
2066
examples :
2066
- - access_token_params : {
2067
- " {auth_code_key} " : " {{auth_code_key}}" ,
2068
- " {client_id_key} " : " {{client_id_key}}" ,
2069
- " {client_secret_key} " : " {{client_secret_key}}"
2070
- }
2067
+ - access_token_params :
2068
+ {
2069
+ " {auth_code_key} " : " {{auth_code_key}}" ,
2070
+ " {client_id_key} " : " {{client_id_key}}" ,
2071
+ " {client_secret_key} " : " {{client_secret_key}}" ,
2072
+ }
2071
2073
extract_output :
2072
2074
title : DeclarativeOAuth Extract Output
2073
2075
type : array
2074
2076
items :
2075
2077
type : string
2076
2078
description : |-
2077
- The DeclarativeOAuth Specific list of strings to indicate which keys should be extracted and returned back to the input config.
2079
+ The DeclarativeOAuth Specific list of strings to indicate which keys should be extracted and returned back to the input config.
2078
2080
examples :
2079
2081
- extract_output : ["access_token", "refresh_token", "other_field"]
2080
2082
state :
@@ -2086,17 +2088,14 @@ definitions:
2086
2088
- max
2087
2089
description : |-
2088
2090
The DeclarativeOAuth Specific object to provide the criteria of how the `state` query param should be constructed,
2089
- including length and complexity.
2091
+ including length and complexity.
2090
2092
properties :
2091
2093
min :
2092
2094
type : integer
2093
2095
max :
2094
2096
type : integer
2095
2097
examples :
2096
- - state : {
2097
- " min " : 7,
2098
- " max " : 128,
2099
- }
2098
+ - state : { "min": 7, "max": 128 }
2100
2099
client_id_key :
2101
2100
title : (Optional) DeclarativeOAuth Client ID Key Override
2102
2101
type : string
@@ -2122,14 +2121,14 @@ definitions:
2122
2121
title : (Optional) DeclarativeOAuth State Key Override
2123
2122
type : string
2124
2123
description : |-
2125
- The DeclarativeOAuth Specific optional override to provide the custom `state` key name, if required by data-provider.
2124
+ The DeclarativeOAuth Specific optional override to provide the custom `state` key name, if required by data-provider.
2126
2125
examples :
2127
2126
- state_key : " my_custom_state_key_key_name"
2128
2127
auth_code_key :
2129
2128
title : (Optional) DeclarativeOAuth Auth Code Key Override
2130
2129
type : string
2131
2130
description : |-
2132
- The DeclarativeOAuth Specific optional override to provide the custom `code` key name to something like `auth_code` or `custom_auth_code`, if required by data-provider.
2131
+ The DeclarativeOAuth Specific optional override to provide the custom `code` key name to something like `auth_code` or `custom_auth_code`, if required by data-provider.
2133
2132
examples :
2134
2133
- auth_code_key : " my_custom_auth_code_key_name"
2135
2134
redirect_uri_key :
0 commit comments