如何使用 REST API 重建 Nexus 存储库元数据?
How to rebuild nexus repository metadata using REST API?
我在 nexus REST API 中发现了 /service/local/metadata/{domain}/{target}/content。
但是当我尝试执行它时(例如使用 curl)
curl -v --request DELETE --user "login:password" --silent http://nexusHost/local/metadata/repositories/myRepository/content
我收到了这条消息,但工作尚未完成
HTTP/1.1 405 La m�thode HTTP DELETE n''est pas support�e par cette URL
你能帮我完成这项工作吗?谢谢。
注意:使用 Nexus 2.11.3-01
你只是拼错了你的请求! (你忘记在local之前加上service/.
curl -v --request DELETE --user "login:password" --silent http://nexusHost/service/local/metadata/repositories/myRepository/content
我在 nexus REST API 中发现了 /service/local/metadata/{domain}/{target}/content。
但是当我尝试执行它时(例如使用 curl)
curl -v --request DELETE --user "login:password" --silent http://nexusHost/local/metadata/repositories/myRepository/content
我收到了这条消息,但工作尚未完成
HTTP/1.1 405 La m�thode HTTP DELETE n''est pas support�e par cette URL
你能帮我完成这项工作吗?谢谢。
注意:使用 Nexus 2.11.3-01
你只是拼错了你的请求! (你忘记在local之前加上service/.
curl -v --request DELETE --user "login:password" --silent http://nexusHost/service/local/metadata/repositories/myRepository/content