我在尝试在 Snowflake 中执行 OAuth 令牌请求时遇到问题。
我正在使用带有查询参数的 Postman,grant_type=authorization_code
但 oauth 令牌请求端点不断发回以下响应。
{
"data": null,
"error": "unsupported_grant_type",
"code": null,
"message": "The provided grant type is not supported.",
"success": false,
"headers": null
}
有任何想法吗?根据文档,这是两种受支持的授权类型之一。
https://docs.snowflake.com/en/user-guide/oauth-custom.html
API 网址:
https://example.com/oauth/token-request?grant_type=authorization_code&code=123&redirect_uri=https://localhost.com