我正在尝试 POST 到 Auth0 委托 URL 以获取访问令牌并收到“不允许授予类型”错误,如下所示。(这是不使用 Postman 的时候。)
我在论坛上看到一个帖子,授权在 Auth0 中已弃用。谁能确认这是否是这里的问题,以及我是否正在尝试一些不再可用的东西?
要求:
Content-Type: 'application/json'
{
"client_id": "ID",
"grant_type": "urn:ietf:params:oauth:grant-type:jwt-bearer",
"id_token": "TOKEN",
"target": "lwTL1rYVfC0KsBUFPeKWY3HvGjbIgdDM",
"api_type": "salesforce_api",
"scope": "openid"
}
错误:
{
"error": "unauthorized_client",
"error_description": "Grant type 'http://auth0.com/oauth/legacy/grant-type/delegation/id_token' not allowed for the client.",
"statusCode": 403,
"error_uri": "https://auth0.com/docs/clients/client-grant-types"
}
相关问题:
在那个问题中,使用 Postman 调用具有相同请求的端点会导致不同的错误!