Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play Android Developer API

I'm developing an android application that is going to sell in-app products.

In the google documentation about "Google Play In-App Billing" there is a section called Purchase Status API. After reading this section what I've understood is that purchases verification should be done with the Google Play Android Developer API v1.1 in my backend server.

I've tried to understand the Google Play Android Developer API documentation, but I don't understand what I have to do to get an authorization token.

Please, help me!

Thanks

like image 600
Eduardo Avatar asked Jun 20 '13 10:06

Eduardo


People also ask

Does Google Play have an API?

The Google Play Games Services Publishing API allows you to automate frequent tasks having to do with game services production and distribution. The Reporting API lets you retrieve information about your app's quality from Android vitals. The Reply to Reviews API lets you retrieve and reply to reviews of your app.

Which API is best for Android development?

Best API's for Android DevelopmentGraph is definitely one of the most used API in the Play Store.

What is Google Play Services API?

Google Play services powers a broad set of APIs and services on Android to help you build your app, enhance privacy and security, engage users, and grow your business. AdMob. Analytics. Cast. Fit.


2 Answers

I've found a thread where it's explained everything. How to obtain the refresh token, how to use it to obtain a new access token, and how to use the API to query a subscription.

This is the thread where I've found the solution:

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

Hope this helps.

like image 68
Eduardo Avatar answered Oct 13 '22 01:10

Eduardo


Have you looked at https://developers.google.com/android-publisher/authorization. This contains all the details you should need.

Basically, you login via your Google Account to the google api console, create a new project from the menu on the left and then on the list of api's on the right find the name of the api for the google play developer api and turn it on.

You will then need to follow the instruction on the web page about you create a new client.

Hope this helps.

like image 39
Boardy Avatar answered Oct 13 '22 01:10

Boardy