我正在尝试在我的春季启动应用程序中使用Keycloak Rest API获取访问令牌。
这是我使用post方法在Postman中传递的URL,
http://localhost:8180/auth/realms/springboot/protocol/openid-connect/token
这是我的境界
在正文部分作为www-form-urlencoded内容类型,我已经通过
用户名,密码,client_id,grant_type作为密码,
我已经完成了管理控制台中的部分,还设置了领域和其他内容,
找不到邮递员的回复404,
预期的输出是访问令牌。
----
here is my configuration in my app
keycloak.auth-server-url=http://localhost:8180/auth
keycloak.realm=springboot
keycloak.resource=springboot
keycloak.public-client=true
keycloak.security-constraints[0].authRoles[0]=user
keycloak.security-constraints[0].securityCollections[0].patterns[0]=/save/*
----