本教程针对keycloak的oidc协议,即oauth2的授权在postman等工具调试方式。
(方法一)手动获取access_token 调用
1.1 获取access_token
在postman或类似工具中,调用auth接口,如测试地址:
http://ip:port/realms/xxx/protocol/openid-connect/token
xxx项目的域名:xxx
1.post 请求
2.地址 http://ip:端口/auth/realms/域名/protocol/openid-connect/token
3.请求参数选择body 选择 x-www-form-urlencoder
4.参数
grant_type password
client_id admin-cli
username 你的用户名
password 你的密码
1.2 使用access_token 访问接口
在postman中输入你要访问的接口地址,在header中添加参数
Authorization 值格式: bearer 上方取到的access_token
注意:bearer之后有个空格
即可调用成功。
(方法二)利用postman自带oauth认证工具
打开postman,输入你要调用的接口,在地址栏下方的标签中选择 Authorization
然后在下方的Configure New Token中配置如下
其中 Access Token URL同方法一的地址,xxx项目的地址为:
输入完成后,点击下方的 Cet New Access Token 按钮
即可生成access_token,此时再访问你调用的接口,就可以发现接口调用已经认证通过。
版权归原作者 刀下阳光 所有, 如有侵权,请联系我们删除。