我需要使用 REST API 从旧工件中手动清理 Jfrog 工件。
出于这些目的,首先,我必须识别在特定日期范围内创建的工件。
问题是当我使用
curl -u user:password -X GET "http://artifactory:8081/artifactory/api/search"
我收到这个错误
{
"errors" : [ {
"status" : 405,
"message" : "Method Not Allowed"
} ]
什么意思,那个方法是不允许的?我该如何处理?
完整的命令是
curl -u user:password "http://artifactory:8081/artifactory/api/search?from=long&to=long&repos=currentrepo"