答案 0 :(得分:1)
正确的是,/oauth/ro
端点已被弃用。您应该拨打/oauth/token
来拨打电话。
答案 1 :(得分:0)
你的问题不清楚。
尝试通过标准身份验证发送带有登录名/密码的第一个请求(授权选项卡>类型>基本身份验证)。
按照以下步骤,我建议查看相关的邮递员手册:Using the Auth0 API with our Postman Collections并使用Auth0 API Documentation中的预定义集合(按下" Run in Postman"按钮)。
此外,强烈建议您使用Native Postman app,但不要使用已弃用的Chrome扩展程序。
答案 2 :(得分:0)
我能够通过使用id_token
端点并传递/oauth/token
来获得scope=offline_access
。这是我的POST有效负载(Python代码)的示例:
{
"grant_type": "http://auth0.com/oauth/grant-type/password-realm",
"scope": "offline_access",
"client_id": client_id,
"client_secret": client_secret,
"username": username,
"password": password,
"realm": database_connection,
}
响应:
{
access_token: "lK...",
expires_in: 1000,
id_token: "eyJ...",
refresh_token: "ym...",
}