I want to get tags according to this page, I can get repos like
curl -X GET https://myhub.com/api/repositories?project_id=5
[
"my-repo/nginx",
"my-repo/php"
]
but if I want to get tag list, it return 404 like
curl -X GET https://myhub.com/api/repositories/tags?repo_name=my-repo/nginx
404 Page Not Found
how can I get the tag list?
Have you tried "curl -X GET https://myhub.com/api/repositories/my-repo%2Fnginx/tags"?
it works when using curl -X GET https://myhub.com/api/repositories/my-repo%2Fnginx/tags, thanks
Most helpful comment
it works when using
curl -X GET https://myhub.com/api/repositories/my-repo%2Fnginx/tags, thanks