如何在spring oauth2应用程序中使用Postman请求oauth2令牌?

时间:2018-04-19 15:48:41

标签: spring-boot curl spring-security postman spring-security-oauth2

我想重复以下教程: Spring Boot and OAuth2

我坚持步骤 How to Get an Access Token

我不知道如何使用curl,但我知道邮递员并尝试使用邮递员在教程中执行请求。 教程版本:

$ curl acme:acmesecret@localhost:8080/oauth/token -d grant_type=client_credentials

我的版本:

enter image description here

请帮助纠正我的请求

2 个答案:

答案 0 :(得分:0)

如果要在网址中添加用户/密码,则可以这样做:

acme:acmesecret@localhost:8080/oauth/token?grant_type=client_credentials

答案 1 :(得分:0)

client_credentials-表示clientId和机密。

  1. 请点击“授权”标签,然后选择“基本身份验证”
  2. 输入您的clientId和机密
  3. 从标题中删除用户和密码参数
  4. 利润