java - Accessing the edit method from google play developer rest api -
i authenticated google play developer rest api , getting refresh token can figure out how make edit requests. have method signature @ following link:
https://developers.google.com/android-publisher/api-ref/edits/insert
i added following header
authorization:{{token_type}} {{access_token}}
but cant figure out put package name:
post https://www.googleapis.com/androidpublisher/v2/applications/packagename/edits
i putted packagename
above using , post parameter , in both cases encountered "404 not found" error. please help.
you can try
post https://www.googleapis.com/androidpublisher/v2/applications/edits?id = packageid && expirytimeseconds = 20 https://www.googleapis.com/androidpublisher/v2/applications/**packagename**/edits/**editid**
according https://developers.google.com/android-publisher/api-ref/edits#methods
Comments
Post a Comment