android 无法使用Play API上传应用包

9rnv2umw  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(180)

bounty将在3天后过期。回答此问题可获得+50声望奖励。Julien Debache希望引起更多关注此问题。

我运行了一个脚本,它会自动上传一个捆绑包,并在Play商店中创建一个内部测试版本。这个脚本非常适合非草稿应用程序。但是,我想为我正在开发的新应用程序设置这个脚本,我目前无法将其置于非草稿状态(我没有任何版本准备生产),但我仍然希望能够给予它给一些内部测试人员,并更新他们的版本,因为我在应用程序上的工作。匿名:

  1. import os
  2. from googleapiclient.discovery import build
  3. from oauth2client.service_account import ServiceAccountCredentials
  4. # Get the app ID from the environment.
  5. app_id = "com.company.app.app"
  6. print(f"App ID set to {app_id}.")
  7. # Get the APK file path from the environment.
  8. aab_file_path = "/output/com.company.app.app-Signed.aab"
  9. print(f"Path to bundle set to {aab_file_path}.")
  10. # Get the service account JSON file path from the environment.
  11. service_account_file_path = "/service-account-key.json"
  12. print(f"Path to service account key set to {service_account_file_path}.")
  13. # Create the service account credentials object.
  14. credentials = ServiceAccountCredentials.from_json_keyfile_name(
  15. service_account_file_path, ["https://www.googleapis.com/auth/androidpublisher"]
  16. )
  17. # Create the API client object.
  18. service = build("androidpublisher", "v3", credentials=credentials)
  19. # Get an edit ID.
  20. print(f"Creating an edit for bundle upload...")
  21. request = service.edits().insert(packageName=app_id)
  22. response = request.execute()
  23. editId = response['id']
  24. print(f"Edit ID for bundle upload is {editId}.")
  25. with open(aab_file_path, "rb") as f:
  26. request = service.edits().bundles().upload(
  27. packageName=app_id,
  28. editId=editId,
  29. media_body=aab_file_path,
  30. media_mime_type="application/octet-stream",
  31. )
  32. print(f"Creating edit for bundle upload...")
  33. response = request.execute()
  34. versionCode = response.get("versionCode")
  35. print(f"Bundle version code is {versionCode}.")
  36. print(f"Commiting bundle upload edit...")
  37. request = service.edits().commit(editId=editId, packageName=app_id)
  38. response = request.execute()
  39. print(f"Bundle upload successfull.")
  40. request = service.edits().insert(packageName=app_id)
  41. response = request.execute()
  42. editId = response['id']
  43. release = {
  44. "versionCodes": [
  45. versionCode
  46. ],
  47. "releaseNotes": [
  48. {
  49. "language": "en_GB",
  50. "text": "Minor Improvements"
  51. }
  52. ],
  53. "status": "draft",
  54. }
  55. track = {
  56. "track": "internal",
  57. "releases": [
  58. release
  59. ]
  60. }
  61. request = service.edits().tracks().update(packageName=app_id, editId=editId, track="internal", body=track)
  62. response = request.execute()
  63. request = service.edits().commit(packageName=app_id, editId=editId)
  64. response = request.execute()

字符串
上传bundle时失败,并显示以下错误消息:
googleapiclient.errors.HttpError:<请求https://androidpublisher.googleapis.com/androidpublisher/v3/applications/com.company.app.app/edits/18014957208426515290:commit?alt=json时出现HttpError 400返回“只能在草稿应用上创建具有草稿状态的版本"。详细信息:“只能在草稿应用上创建具有草稿状态的版本">
这个错误消息没有任何意义,因为我并没有,事实上,试图在这个阶段创建一个版本。我只是试图上传一个捆绑包。所以我只是不知道如何继续.
请注意,我可以手动上传一个bundle,并基于它创建一个内部测试版本。我可以将它安装在我的设备上,它按预期工作,所以我尝试做的应该是可能的。

3qpi33ja

3qpi33ja1#

第一次发布的草案应用程序必须是手动的
然后,你必须添加submit_as_draft: true到你的yaml

相关问题