无法通过 API 将 APK 文件上传到曲棍球应用

Unable to upload an APK file to hockey app via their API

我无法通过 them.When 提供的 API 将 android apk 上传到 hockeyapp 我使用

curl \ -F "status=2" \
-F "notify=1" \ 
-F "notes=Some new features and fixed bugs." \ 
-F "notes_type=0" \
-F "apk=@app-release.apk" \
-H "X-HockeyAppToken: MY_TOKEN" \https://rink.hockeyapp.net/api/2/apps/MY_APP_ID/app_versions/upload  

我收到一个错误:{"status":null}

当我尝试

 curl \ 
-F "status=2" \ 
-F "notify=1" \
-F "notes=Some new features and fixed bugs." \ 
-F "notes_type=0" \ -F "apk=@app-release.apk" \
-H "X-HockeyAppToken: MY_TOKEN" \ https://rink.hockeyapp.net/api/2/apps/upload

发生错误:{"status":"error","message":"File not found. Please check that your file is not a directory or bundle."}

请给我一个 solution.Drag 并且 drop 正在为 me.But 工作 我需要通过他们 API.I 来完成我正在使用 Team City 作为我的 CI 服务器。

构建的参数在所有平台上都称为 "ipa",即 -F "ipa=@app-release.apk" 是正确的。