Added references to Project Nickel (rounded and "relevant" pricing for each country where an Android app is published) within overview and reference pages. Also added discussion of pricing templates and the associated operations in the "administration" page. Finally, completed minor touch-ups to billing administration section (removed unhelpful links, updated screen captures). Bug: 28204935 Change-Id: I917d06876d1525f24cb26a55a39cd64ae479b8f8
372 lines
14 KiB
Plaintext
372 lines
14 KiB
Plaintext
page.title=In-app Billing Reference
|
|
parent.title=In-app Billing
|
|
parent.link=index.html
|
|
@jd:body
|
|
|
|
<div id="qv-wrapper">
|
|
<div id="qv">
|
|
<h2>In this document</h2>
|
|
<ol>
|
|
<li><a href="#billing-codes">Server Response Codes</a></li>
|
|
<li><a href="#billing-interface">API Reference</a>
|
|
<ol>
|
|
<li><a href="#getSkuDetails">getSkuDetails()</a></li>
|
|
<li><a href="#getBuyIntent">getBuyIntent()</a></li>
|
|
<li><a href="#upgrade-getBuyIntentToReplaceSkus">getBuyIntentToReplaceSkus()</a></li>
|
|
<li><a href="#getPurchases">getPurchases()</a></li>
|
|
</ol>
|
|
</li>
|
|
</ol>
|
|
<h2>Downloads</h2>
|
|
<ol>
|
|
<li><a href="{@docRoot}google/play/billing/billing_integrate.html#billing-download">Sample
|
|
Application (V3)</a></li>
|
|
</ol>
|
|
<h2>See also</h2>
|
|
<ol>
|
|
<li><a href="{@docRoot}google/play/billing/api.html">In-app Billing Version 3</a></li>
|
|
<li><a href="{@docRoot}training/in-app-billing/index.html">Selling In-app Products</a></li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<p>This documentation provides technical reference information for using the
|
|
In-app Billing Version 3 API. </p>
|
|
|
|
<h2 id="billing-codes">Server Response Codes</h2>
|
|
<p>
|
|
The following table lists all of the server response codes that are sent from
|
|
Google Play to your application. Google Play sends the response code
|
|
synchronously as an integer mapped to the {@code RESPONSE_CODE} key in the
|
|
response {@code Bundle}. Your application must handle all of these response
|
|
codes.
|
|
</p>
|
|
<p class="table-caption" id="response-codes-table">
|
|
<strong>Table 1.</strong> Summary of response codes for In-app Billing Version 3 API calls.</p>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">Response Code</th>
|
|
<th scope="col">Value</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_OK}</td>
|
|
<td>0</td>
|
|
<td>Success</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_USER_CANCELED}</td>
|
|
<td>1</td>
|
|
<td>User pressed back or canceled a dialog</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_SERVICE_UNAVAILABLE}</td>
|
|
<td>2</td>
|
|
<td>Network connection is down</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_BILLING_UNAVAILABLE}</td>
|
|
<td>3</td>
|
|
<td>Billing API version is not supported for the type requested</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_ITEM_UNAVAILABLE}</td>
|
|
<td>4</td>
|
|
<td>Requested product is not available for purchase</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_DEVELOPER_ERROR}</td>
|
|
<td>5</td>
|
|
<td>Invalid arguments provided to the API. This error can also indicate that
|
|
the application was not correctly signed or properly set up for In-app
|
|
Billing in Google Play, or does not have the necessary permissions in its
|
|
manifest</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_ERROR}</td>
|
|
<td>6</td>
|
|
<td>Fatal error during the API action</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_ITEM_ALREADY_OWNED}</td>
|
|
<td>7</td>
|
|
<td>Failure to purchase since item is already owned</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code BILLING_RESPONSE_RESULT_ITEM_NOT_OWNED}</td>
|
|
<td>8</td>
|
|
<td>Failure to consume since item is not owned</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2 id="billing-interface">API Reference</h2>
|
|
<p>The In-app Billing Version 3 API is defined in the {@code
|
|
IInAppBillingService.aidl} file, which is included with the Version 3
|
|
<a href="{@docRoot}training/in-app-billing/preparing-iab-app.html#GetSample">
|
|
sample application</a>.</p>
|
|
|
|
<h3 id="getSkuDetails">The getSkuDetails() method</h3>
|
|
<p>
|
|
This method returns product details for a list of product IDs. In the
|
|
response {@code Bundle} sent by Google Play, the query results are stored in
|
|
a String {@code ArrayList} mapped to the {@code DETAILS_LIST} key. Each
|
|
String in the details list contains product details for a single product in
|
|
JSON format. The fields in the JSON string with the product details are
|
|
summarized in table 2.
|
|
</p>
|
|
<p class="table-caption" id="product-details-table">
|
|
<strong>Table 2.</strong> Description of JSON fields with product item details
|
|
returned from a {@code getSkuDetails} request.</p>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">Key</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code productId}</td>
|
|
<td>The product ID for the product.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code type}</td>
|
|
<td>Value must be <code>“inapp”</code> for an in-app product or
|
|
<code>"subs"</code> for subscriptions.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code price}</td>
|
|
<td>Formatted price of the item, including its currency sign. The price
|
|
does not include tax.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code price_amount_micros}</td>
|
|
<td>Price in micro-units, where 1,000,000 micro-units equal one unit of the
|
|
currency. For example, if {@code price} is {@code "€7.99"}, {@code
|
|
price_amount_micros} is {@code "7990000"}. This value represents the
|
|
localized, rounded price for a particular currency.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code price_currency_code}</td>
|
|
<td><a href="http://en.wikipedia.org/wiki/ISO_4217#Active_codes">ISO 4217
|
|
currency code</a> for {@code price}. For example, if {@code price} is
|
|
specified in British pounds sterling, {@code price_currency_code} is {@code
|
|
"GBP"}.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code title}</td>
|
|
<td>Title of the product.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code description}</td>
|
|
<td>Description of the product.</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
|
|
<h3 id="getBuyIntent">The getBuyIntent() method</h3>
|
|
<p>
|
|
This method returns a response code integer mapped to the {@code
|
|
RESPONSE_CODE} key, and a {@link android.app.PendingIntent} to launch the
|
|
purchase flow for the in-app item mapped to the {@code BUY_INTENT} key, as
|
|
described in <a href=
|
|
"{@docRoot}google/play/billing/billing_integrate.html#purchase">Purchasing an
|
|
Item</a>. When it receives the {@link android.app.PendingIntent}, Google Play
|
|
sends a response {@code Intent} with the data for that purchase order. The
|
|
data that is returned in the response {@code Intent} is summarized in table
|
|
3.
|
|
</p>
|
|
|
|
<p class="table-caption" id="purchase-pendingintent-response-table">
|
|
<strong>Table 3.</strong> Response data from an In-app Billing Version 3 purchase request.</p>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">Key</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code RESPONSE_CODE}</td>
|
|
<td>Value is <code>0</code> if the purchase was success, error otherwise.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_PURCHASE_DATA}</td>
|
|
<td>
|
|
A String in JSON format that contains details about the purchase order. See table 4 for a description of the JSON fields.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_DATA_SIGNATURE}</td>
|
|
<td>String containing the signature of the purchase data that was signed
|
|
with the private key of the developer. The data signature uses the
|
|
RSASSA-PKCS1-v1_5 scheme.</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
|
|
<p>Table 4 describes the JSON fields that are returned in the response data for
|
|
a purchase order.</p>
|
|
<p class="table-caption" id="purchase-data-table">
|
|
<strong>Table 4.</strong> Descriptions of the JSON fields for {@code INAPP_PURCHASE_DATA}.</p>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">Field</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code autoRenewing}</td>
|
|
<td>Indicates whether the subscription renews automatically. If
|
|
<code>true</code>, the subscription is active, and will
|
|
automatically renew on the next billing date. If <code>false</code>,
|
|
indicates that the user has canceled the subscription. The user has
|
|
access to subscription content until the next billing date and will
|
|
lose access at that time unless they re-enable automatic renewal
|
|
(or manually renew, as described in
|
|
<a href="{@docRoot}google/play/billing/billing_subscriptions.html#manual-renewal">Manual
|
|
Renewal</a>).
|
|
If you offer a <a href="{@docRoot}google/play/billing/billing_subscriptions.html#grace-period"
|
|
>grace period</a>, this value remains set to <code>true</code> for all
|
|
subscriptions, as long as the grace period has not lapsed. The next billing date
|
|
is extended dynamically every day until the end of the grace period or until the
|
|
user fixes their payment method.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code orderId}</td>
|
|
<td>A unique order identifier for the transaction. This identifier
|
|
corresponds to the Google payments order ID. If the order is a test
|
|
purchase made through the In-app Billing Sandbox, {@code orderId} is
|
|
blank.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code packageName}</td>
|
|
<td>The application package from which the purchase originated.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code productId}</td>
|
|
<td>The item's product identifier. Every item has a product ID, which you
|
|
must specify in the application's product list on the Google Play
|
|
Developer Console.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code purchaseTime}</td>
|
|
<td>The time the product was purchased, in milliseconds since the epoch (Jan 1, 1970).</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code purchaseState}</td>
|
|
<td>The purchase state of the order. Possible values are <code>0</code>
|
|
(purchased), <code>1</code> (canceled), or <code>2</code> (refunded).</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code developerPayload}</td>
|
|
<td>A developer-specified string that contains supplemental information about an order. You can specify a value for this field when you make a {@code getBuyIntent} request.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code purchaseToken}</td>
|
|
<td>A token that uniquely identifies a purchase for a given item and user pair. </td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
|
|
<h3 id="upgrade-getBuyIntentToReplaceSkus">The getBuyIntentToReplaceSkus()
|
|
method</h3>
|
|
|
|
<p>This method is used to upgrade or downgrade a subscription purchase. The method
|
|
is similar to <a href="#getBuyIntent"><code>getBuyIntent()</code></a>, except
|
|
that it takes a list of already-purchased SKUs that are to be
|
|
replaced with the SKU being purchased. When the user completes the purchase,
|
|
Google Play cancels the old SKUs and credits the user with the unused value of
|
|
their subscription time on a pro-rated basis. Google Play applies this credit
|
|
to the new subscription, and does not begin billing the user for the new
|
|
subscription until after the credit is used up.</p>
|
|
|
|
<p>This method was added with version 5 of the in-app billing API. To verify
|
|
that the method is reported, send an <code>isBillingSupported</code> AIDL
|
|
request.</p>
|
|
|
|
<p class="note"><strong>Note:</strong> You can only use this method for
|
|
subscription purchases. If the passed <code>type</code> parameter is anything
|
|
other than <code>"subs"</code>, the method returns
|
|
<a href="#billing-codes"><code>BILLING_RESPONSE_RESULT_DEVELOPER_ERROR</code></a>.
|
|
Furthermore, the passed SKUs may not include SKUs for seasonal
|
|
subscriptions.</p>
|
|
|
|
<p>
|
|
This method returns a response code integer mapped to the {@code
|
|
RESPONSE_CODE} key, and a {@link android.app.PendingIntent} to launch the
|
|
purchase flow for the in-app subscription mapped to the {@code BUY_INTENT}
|
|
key, as described in <a href=
|
|
"{@docRoot}google/play/billing/billing_integrate.html#purchase">Purchasing an
|
|
Item</a>. When it receives the {@link android.app.PendingIntent}, Google Play
|
|
sends a response {@code Intent} with the data for that purchase order. The
|
|
data that is returned in the response {@code Intent} is summarized in table
|
|
5.
|
|
</p>
|
|
|
|
<p class="table-caption" id="upgrade-purchase-pendingintent-response-table">
|
|
<strong>Table 5.</strong> Response data from an In-app Billing Version 5 purchase request.</p>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">Key</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code RESPONSE_CODE}</td>
|
|
<td>Value is <code>0</code> if the purchase succeeds. If the purchase fails, contains an error
|
|
code.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_PURCHASE_DATA}</td>
|
|
<td>
|
|
A String in JSON format that contains details about the purchase order.
|
|
See <a href="#purchase-data-table">table 4</a> for a description of the JSON fields.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_DATA_SIGNATURE}</td>
|
|
<td>String containing the signature of the purchase data that the developer
|
|
signed with their private key. The data signature uses the
|
|
RSASSA-PKCS1-v1_5 scheme.</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
|
|
</p>
|
|
|
|
<h3 id="getPurchases">The getPurchases() method</h3>
|
|
<p>This method returns the current un-consumed products owned by the user,
|
|
including both purchased items and items acquired by redeeming a promo code.
|
|
Table 5 lists the response data that is returned in the
|
|
{@link android.os.Bundle}.</p>
|
|
|
|
<p class="table-caption" id="getpurchases-response-table">
|
|
<strong>Table 6.</strong> Response data from a {@code getPurchases} request.</p>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">Key</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code RESPONSE_CODE}</td>
|
|
<td>Value is <code>0</code> if the request was successful, error otherwise.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_PURCHASE_ITEM_LIST}</td>
|
|
<td>{@code StringArrayList} containing the list of productIds of purchases from this app.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_PURCHASE_DATA_LIST}</td>
|
|
<td>{@code StringArrayList} containing the details for purchases from this app. See table 4 for the list of detail information stored in each {@code INAPP_PURCHASE_DATA} item in the list.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_DATA_SIGNATURE_LIST}</td>
|
|
<td>{@code StringArrayList} containing the signatures of purchases from this app.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{@code INAPP_CONTINUATION_TOKEN}</td>
|
|
<td>String containing a continuation token to retrieve the next set of
|
|
in-app products owned by the user. This is only set by the Google Play
|
|
service if the number of products owned by the user is very large. When a
|
|
continuation token is present in the response, you must make another call
|
|
to {@code getPurchases} and pass in the continuation token that you
|
|
received. The subsequent {@code getPurchases} call returns more purchases
|
|
and possibly another continuation token.</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|