OAuth
This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.
| Property | Description |
| InitiateOAuth | Specifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working. |
| OAuthVersion | Identifies the version of OAuth being used. |
| OAuthClientId | Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication. |
| OAuthClientSecret | Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.). |
| OAuthAccessToken | Specifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange. |
| OAuthAccessTokenSecret | The OAuth access token secret for connecting using OAuth. |
| Scope | Specifies the OAuth scopes that the application requests from Jira. Scopes define the level of access granted to the OAuth application. |
| OAuthSettingsLocation | Specifies the location of the settings file where OAuth values are saved. |
| CallbackURL | Identifies the URL users return to after authenticating to Jira via OAuth (Custom OAuth applications only). |
| CloudId | The Cloud Id associated with the Atlassian site that has been authorized during the OAuth 2.0 authentication process. This unique identifier is assigned to the Atlassian site and is used for distinguishing different cloud instances when interacting with APIs or services within the Atlassian ecosystem. |
| OAuthVerifier | Specifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set. |
| AuthToken | The authentication token used to request and obtain the OAuth Access Token. |
| AuthKey | The authentication secret used to request and obtain the OAuth Access Token. |
| OAuthRefreshToken | Specifies the OAuth refresh token used to request a new access token after the original has expired. |
| OAuthExpiresIn | Specifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working. |
| OAuthTokenTimestamp | Displays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created. |
| CertificateStoreType | Specifies the type of certificate store used for Jira private application authentication. |
| CertificateStore | Specifies the certificate store used for Jira authentication. The certificate store contains the client certificate that is used to authenticate the client application with the service. |
| CertificateSubject | Specifies the subject of the client certificate used for Jira private application authentication. The certificate subject is a Distinguished Name (DN) that identifies the certificate and is used during the SSL client authentication process. It helps locate the correct certificate in the store by matching the provided subject information. |
| CertificateStorePassword | Specifies the password used to open the certificate store for authentication with Jira, if the certificate store is password-protected. |