我正在使用Hybris 6.6版本。我们的应用程序在两个不同的主机上运行,并对资源密码流中的OCC oauth令牌调用使用了开箱即用的弹簧安全性。我无法确定为什么它不能在主机之一上提供xml响应。我正在两台主机上进行完全相同的调用(带有Accept头作为application / xml),但是一台主机仅返回Json响应。
我这样拨打电话: curl -X POST'https://host1/authorizationserver/oauth/token?client_id=xyz&client_secret=sbd&grant_type=password&username=u1&password=p1'-H'接受:application / xml'-H'内容类型:application / x-www-form-urlencoded'
curl -X POST'https://host2/authorizationserver/oauth/token?client_id=xyz&client_secret=sbd&grant_type=password&username=u1&password=p1'-H'accept:application / xml'-H'content-type:application / x-www-form-urlencoded'
我期望host1和host2上都有xml响应。当前仅在host1上。请在这里指导可能有什么问题?