I want to use the below API to upload my APK to Store.
Can you help me how to get the values on it? And what things I need prepare?
apiVersion - appId - editId (I already have access_token)
Hi there,
Thanks for posting. The values are as follows:
- the apiVersion for now is "v1";
- the appId is your app's package name / application ID;
- and editId you will get this value once you Post to /{apiVersion}/applications/{appId}/edits.
For example, in Python:
create_edit_path = '/v1/applications/%s/edits' % app_id
create_edit_url = BASE_URL + create_edit_path
create_edit_response = requests.post(create_edit_url, headers=headers)
current_edit = create_edit_response.json()
edit_id = current_edit['id']
1 Person is following this question.