A Data Engineer is designing a Snowflake SQL API for calling a stored procedure with the following code:
When a request is sent, it must be authenticated.
Which authentication techniques meet this requirement?
Snowflake SQL API requests can authenticate programmatically with an OAuth bearer token or with key-pair authentication, which uses a JWT generated from an assigned public/private key pair. MFA and browser-based SSO methods are not the SQL API request authentication methods.
Community Discussion