0
votes
0answers
185 views

List of possible error codes from Google Play Android Developer REST API

I'm currently using the Google Play Android Developer REST API to validate user subscriptions server side. There are a couple of different error messages that I seem to get back. Some that indicate ...
5
votes
2answers
218 views

Searching Music Tracks from Google Play Store via an API

I am writing an app for a record label. They would like to have a list of all their albums that are published in the Google Play store. Is there a way to get a hold of the data from the play store. ...
0
votes
1answer
117 views

OAuth2 Access and Refresh Token from backend service

I'm a backend web service developer for an Android app. We are offering services to the app as subscription and is looking at using Google Play for subscription purchases. We have a backend licenses ...
0
votes
3answers
101 views

How to view stars rating for my App in Google Play?

I want to view the stars vote by users for my app in Google play. Any solution for it?
3
votes
1answer
198 views

Am I getting these steps right for checking a user's in-app billing subscription?

I am making an Android app that sells an in-app monthly subscription. Before I dive into it too much, does this outline of how this should be done seem about right? I am using the Google Play Android ...
0
votes
1answer
64 views

How to securely verify a user's subscription to an Android app?

I know very little about security or servers, but am making an Android app that allows users to purchase an in-app subscription. As recommended, I want to use the Google Play Developer API and store ...
8
votes
3answers
621 views

Am I getting the steps right for verifying a user's Android in-app subscription?

I am making an app that does not require a user account/login, and allows the user to purchase a subscription. I want to use the Google Play Developer API to verify whether or not a user has a ...
0
votes
1answer
124 views

What is the difference between a “service account” and an “installed application”?

To my understanding, the main difference is that a service account doesn't require a user to log in for authorization, while an installed application does. I am making an Android app (an "installed ...
4
votes
1answer
428 views

How to check if a user has a subscription (Android in-app billing)?

I've been trying to use the Google Play Android Developer API but just realized that that might not be what I should be doing: Your servers should never query subscription status dynamically, ...
9
votes
1answer
348 views

Get Google Android Subscription API expiration time for a subscription token.

When I make the following request, Google only gives error 503, and won't provide any useful information. I'm following the documentation here: ...
2
votes
1answer
1k views

How do I test Google Play Android subscription?

How do I test a Google Play Android subscriptions and Google API? The app is uploaded, but not published. The APK is activated. The subscription product id is published. I tried to purchase ...
1
vote
1answer
717 views

Google play API returns error

i am getting the same issue as described in this post . we have used almost exactly the same code. i have tried both with Client ID and Email address of the google service account in below mehotd ...
0
votes
1answer
963 views

Google API Auth Code / Access Token Generation: ERROR 400: Bad Request

I'm trying to get an access token to use the Google Web Play API, but it won't work, and it won't give a helpful error message, and Google doesn't provide a lick of support. ...
3
votes
2answers
828 views

Unable to get the subscription information from Google Play Android Developer API

I'trying to use Google APIs Client Library for Java to get information about user's subscriptions purchased in my android app. Here is how I'm doing for now: HttpTransport HTTP_TRANSPORT = new ...