我尝试使用auth0邮递员模板使用用户名和密码进行身份验证请求,我得到了一个unsupported grant type: password error
.我究竟做错了什么?
var client = new RestClient("https://test.auth0.com/oauth/token"); var request = new RestRequest(Method.POST); request.AddHeader("postman-token", "abc"); request.AddHeader("cache-control", "no-cache"); request.AddHeader("content-type", "application/x-www-form-urlencoded"); request.AddParameter("application/x-www-form-urlencoded", "grant_type=password&client_id=foo&audience=&username=test&password=test&scope=openid%20email%20picture%20nickname", ParameterType.RequestBody);
The Muffin M.. 38
登录Auth0仪表板
转到帐户设置(位于用户名右上角)
在常规选项卡上向下滚动到该API Authorization Settings
部分
Default Audience
将是您的API标识符(如果您有API)
Default Directory
将是您的连接,如数据库连接名称
在POST到oauth/token的POST中不包括受众(如果您指定了上面的默认值).
一定要喜欢Auth0在同一时间让身份验证变得轻松而痛苦.
请参阅下面的屏幕截图作为参考
登录Auth0仪表板
转到帐户设置(位于用户名右上角)
在常规选项卡上向下滚动到该API Authorization Settings
部分
Default Audience
将是您的API标识符(如果您有API)
Default Directory
将是您的连接,如数据库连接名称
在POST到oauth/token的POST中不包括受众(如果您指定了上面的默认值).
一定要喜欢Auth0在同一时间让身份验证变得轻松而痛苦.
请参阅下面的屏幕截图作为参考