I followed all the steps for accessing the API described here by Google: https://developers.google.com/android-publisher/authorization .
I managed to get the update token, and I get a new access token when my existing one expires. So now I am trying to get information about a valid subscription using:
GET https://www.googleapis.com/androidpublisher/v1/applications/<packageName>/subscriptions/<subscriptionId>/purchases/<token>?access_token=<myAccessToken>
but the only answer I get is:
{ "error": { "code": 500, "message": null } }
Has anyone encountered this problem before? I am currently testing an unpublished application, although the subscription has been published, so the packageName , subscriptionId and token tags must be valid.
source share