CodelessConnectorPollingAuthProperties interface
Describe the authentication properties needed to successfully authenticate with the server
Properties
api |
A prefix send in the header before the actual token |
api |
The header name which the token is sent with |
authorization |
The endpoint used to authorize the user, used in Oauth 2.0 flow |
authorization |
The query parameters used in authorization request, used in Oauth 2.0 flow |
auth |
The authentication type |
flow |
Describes the flow name, for example 'AuthCode' for Oauth 2.0 |
is |
Marks if the key should sent in header |
is |
Marks if we should send the client secret in header or payload, used in Oauth 2.0 flow |
redirection |
The redirect endpoint where we will get the authorization code, used in Oauth 2.0 flow |
scope | The OAuth token scope |
token |
The endpoint used to issue a token, used in Oauth 2.0 flow |
token |
The query headers used in token request, used in Oauth 2.0 flow |
token |
The query parameters used in token request, used in Oauth 2.0 flow |
Property Details
apiKeyIdentifier
A prefix send in the header before the actual token
apiKeyIdentifier?: string
Property Value
string
apiKeyName
The header name which the token is sent with
apiKeyName?: string
Property Value
string
authorizationEndpoint
The endpoint used to authorize the user, used in Oauth 2.0 flow
authorizationEndpoint?: string
Property Value
string
authorizationEndpointQueryParameters
The query parameters used in authorization request, used in Oauth 2.0 flow
authorizationEndpointQueryParameters?: Record<string, unknown>
Property Value
Record<string, unknown>
authType
The authentication type
authType: string
Property Value
string
flowName
Describes the flow name, for example 'AuthCode' for Oauth 2.0
flowName?: string
Property Value
string
isApiKeyInPostPayload
Marks if the key should sent in header
isApiKeyInPostPayload?: string
Property Value
string
isClientSecretInHeader
Marks if we should send the client secret in header or payload, used in Oauth 2.0 flow
isClientSecretInHeader?: boolean
Property Value
boolean
redirectionEndpoint
The redirect endpoint where we will get the authorization code, used in Oauth 2.0 flow
redirectionEndpoint?: string
Property Value
string
scope
The OAuth token scope
scope?: string
Property Value
string
tokenEndpoint
The endpoint used to issue a token, used in Oauth 2.0 flow
tokenEndpoint?: string
Property Value
string
tokenEndpointHeaders
The query headers used in token request, used in Oauth 2.0 flow
tokenEndpointHeaders?: Record<string, unknown>
Property Value
Record<string, unknown>
tokenEndpointQueryParameters
The query parameters used in token request, used in Oauth 2.0 flow
tokenEndpointQueryParameters?: Record<string, unknown>
Property Value
Record<string, unknown>
Azure SDK for JavaScript