Bintray Debian 存储库创建和上传文件使用 API

Bintray Debian Repository Creation and Upload file using API

我正在按照中的步骤和答案进行操作 Debian repository on Bintray multiple errors and unexpected behavior

但是,我的 Bintray Debian 文件上传尝试仍然失败:

{"message":"Unable to upload files: Debian distribution, component and architecture were not found on repo and were not specified"}

这是我的 curl 命令:

curl -T libterm-screencolor-perl_1.09-1_all.deb -umyid:mybintraykey https://api.bintray.com/content/myid/myrepo/libterm-screencolor-perl/1.09-1/pool/main/l/libterm-screencolor-perl_1.09-1_all.deb;deb_distribution=all;deb_component=main;deb_architecture=i386,amd64;override=1

基本上我得到的错误与 Debian repository on Bintray multiple errors and unexpected behavior 出于完全相同的原因。

所以我决定从头开始,首先创建 Bintray Debian 存储库,via API
这是我的代码:

curl -umyid:mybintraykey https://api.bintray.com/repos/myid/deb -d '{"name":"deb","type":"debian","default_debian_architecture":"amd64","default_debian_distribution":"all","default_debian_component":"main","private":false,"desc":"This repo...","business_unit":"businessUnit1","labels":["label1","label2"],"gpg_sign_metadata":false,"gpg_sign_files":false,"gpg_use_owner_key":false}'

我没有收到任何错误,但也没有任何回应。当我从 Bintray 网络 UI 检查时,没有创建存储库。尝试将 "version_update_max_days" : 60 添加到 JSON 也无济于事。

怎么了?

上传文件:
您的 curl 命令需要引号,请参见 answer.

创建存储库:
您的 curl 命令缺少媒体类型,在本例中应为 -H "Content-Type: application/json"。在详细模式 -v

中 运行 你的 curl 命令总是好的

下面是您的 curl 命令的样子:

curl -umyid:mybintraykey https://api.bintray.com/repos/myid/deb -H "Content-Type: application/json" -d '{"name":"deb","type":"debian","default_debian_architecture":"amd64","default_debian_distribution":"all","default_debian_component":"main","private":false,"desc":"This repo...","business_unit":"businessUnit1","labels":["label1","label2"],"gpg_sign_metadata":false,"gpg_sign_files":false,"gpg_use_owner_key":false}' -v