无法获取在特定日期范围内创建的工件
Can't get artifacts, that were created within a specific date range
我需要使用 REST 从旧工件中手动清理 Jfrog 工件 API。
出于这些目的,首先,我必须确定在特定日期范围内创建的工件。
问题是当我使用
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"
您正在使用其余 api 错误。
完整的命令应该是这样的:
curl -u admin:password "http://localhost:8081/artifactory/api/search/dates?dateFields=created&from=1461052559000&to=1492588559000&repos=libs-snapshot-local “
我需要使用 REST 从旧工件中手动清理 Jfrog 工件 API。
出于这些目的,首先,我必须确定在特定日期范围内创建的工件。
问题是当我使用
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"
您正在使用其余 api 错误。
完整的命令应该是这样的: curl -u admin:password "http://localhost:8081/artifactory/api/search/dates?dateFields=created&from=1461052559000&to=1492588559000&repos=libs-snapshot-local “