我正在尝试通过 ManifoldCF REST API 获取存储库连接的历史报告。根据文档:
应该可以使用以下 URL(连接名称:myConnection):
http://localhost:8345/mcf-api-service/json/repositoryconnectionhistory/myConnection
我也尝试使用一些历史查询参数:
http://localhost:8345/mcf-api-service/json/repositoryconnectionhistory/myConnection?report=simple
但我不确定我是否正确使用它们或它们应该如何附加到 URL,因为文档中没有提到它。问题也是我没有收到任何错误,而是一个空对象,因此很难调试。即使对于不存在的连接,API 也会返回一个空对象。
但是它适用于没有任何属性的资源,例如:
http://localhost:8345/mcf-api-service/json/repositoryconnectionjobs/myConnection
或者
http://localhost:8345/mcf-api-service/json/repositoryconnections/myConnection
提前感谢您的帮助。