Reputation: 364
Our app has already implemented in-app purchase.
But, we previously don't keep track of it, and only relies on the google's service whether a user's level is premium or regular.
Now, we want to track it in our server as well.
Is it possible to get the users data who've bought our subscriptions? (especially his/her email)
Upvotes: 2
Views: 3141
Reputation: 8112
Based from the following documentations, there is no currently existing method to get a list of your app's subscriber's.
Currently existing features with Google Play Developer API is that, it offers an HTTP-based API that lets you perform such tasks as:
The API is designed to be used from your backend servers as a way of securely managing subscriptions, as well as extending and integrating subscriptions with other services.
For complete information, you may go through Google Play Developer API.
Upvotes: 2