我正在尝试访问keycloak 4.8.3
中的新帐户API(不是管理员)。我正在尝试做:
GET "/auth/realms/{realm}/account/credentials/password" endpoint (Based on the AccountRestServiceTest.java)
带有帐户所有者的令牌。得到404 error
。
我已使用预览功能启动服务器
bin/standalone.bat -Dkeycloak.profile=preview
我尝试使用profile.properites
选项添加profile=preview
文件
并且用户具有"manage-account"
,"view-profile"
个帐户角色
我在这里做什么错了?
答案 0 :(得分:0)
我遇到了同样的问题,并且找到了解决方案。
您需要向请求中添加HTTP报头 Accept ,其值为 application / json 。
因为AccountRestService仅在标头接受或 Content-Type 为application / json时才可访问。