Categories:

System Functions (System Control)

SYSTEM$START_OAUTH_FLOW¶

Initiates the OAUTH client flow, returning a URL you use in a browser to complete the OAuth consent process.

Syntax¶

SYSTEM$START_OAUTH_FLOW( '<database_name.schema_name.secret_name>' )
Copy

Arguments¶

'database_name.schema_name.secret_name'

The name of the OAuth2 secret specifying authentication information for the API to access with OAuth.

Usage Notes¶

Use this function to begin a flow that results in an OAuth refresh token added to the secret you pass to this function as an argument.

As an intermediate step, this function returns an authorization URL you can in a browser to complete the OAuth consent process.

After executing this function and using the URL it returns, immediately execute SYSTEM$FINISH_OAUTH_FLOW in the same session to have Snowflake add a refresh token to the secret you specified.

The secret in this function’s argument must include:

  • A TYPE parameter specifying a value of oauth2.

  • An API_AUTHENTICATION parameter specifying a security integration containing details (such as OAuth client ID, secret, authorization endpoint, and token endpoint) about the service provider for which access is being granted.