我已经在我的环境中成功地安装了Documentum。当我进入http://localhost:8080/dctm-rest/repositories时,我能够成功地看到存储库。但是当我试图打开任何内阁的URL时,它会提示输入用户名密码。
我在那里放了个密码,效果很好。
但是,当我使用Postman发送请求时,它会显示这个错误
"status": 401,
"code": "E_GENERAL_AUTHENTICATION_ERROR",
"message": "Authentication failed.",
"details": "Full authentication is required to access this resource"
以及在发送授权时,使用的格式为:基本(“用户名:密码”的base64值)
它显示了
"status": 400,
"code": "E_INPUT_ILLEGAL_ARGUMENTS_PARAM",
"message": "Illegal argument {0} provided with value {1}.",
"details": "Parameter conditions \"dql\" not met for actual request
parameters: "
发布于 2019-01-28 07:32:14
我尝试了几个链接,并使用基本8月,这是有效的!
发布于 2018-12-17 10:47:25
您必须打开Interceptor来发出经过代理身份验证的请求,以便它具有与浏览器相同的请求上下文。
https://stackoverflow.com/questions/53444667
复制相似问题