Google-Cloud-Platform

從工件系統資料庫(Maven)下載文件

  • May 6, 2022

我一直在使用 REST API for Artifact Registry。我可以找到我想下載的 .zip 文件的 URL,但我只收到 JSON 響應。是否可以使用 Maven 項目從工件系統資料庫下載單個工件文件?

來源:方法:projects.locations.repositories.files.get

現在看來我需要使用mvngradle執行此操作,這在我的情況下會很不方便。

正如您提到的Artifact Registry API 文件中所述,使用該get方法接收的文件以 JSON 表示。

您確實需要使用 Maven 或 Gradle 來下載 artifact

正如@IanW 提到的,您可以提出兩個功能請求:

引用自:https://serverfault.com/questions/1081007