facebook twitter hatena line email

「Php/アプリストア連携/返金API/GooglePlayStore」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==GooglePlayAPIのvoided-purchasesを使用== https://developers.google.com/android-publisher/voided-purchases?hl=ja https://developers.google.com/android-publisher/api-...」)
 
 
(同じ利用者による、間の20版が非表示)
行1: 行1:
==GooglePlayAPIのvoided-purchasesを使用==
+
[[Php/アプリストア連携/返金API/GooglePlayStore/基本]]
https://developers.google.com/android-publisher/voided-purchases?hl=ja
+
  
https://developers.google.com/android-publisher/api-ref/rest/v3/purchases.voidedpurchases/list?hl=ja
+
[[Php/アプリストア連携/返金API/GooglePlayStore/RTDN]]
  
 
+
[[Php/アプリストア連携/返金API/GooglePlayStore/voided-purchases]]
===正常レスポンス===
+
<pre>
+
{
+
  "voidedPurchases": [
+
    {
+
      "kind": "androidpublisher#voidedPurchase",
+
      "purchaseToken": "abcdef123456",
+
      "orderId": "GPA.1234-5678-9012-34567",
+
      "voidedTimeMillis": "1610000000000",
+
      "voidedSource": 1,
+
      "voidedReason": 2
+
    }
+
  ],
+
  "tokenPagination": {
+
    "nextPageToken": "next_page_token_123"
+
  }
+
}
+
</pre>
+

2025年6月18日 (水) 16:37時点における最新版

Php/アプリストア連携/返金API/GooglePlayStore/基本

Php/アプリストア連携/返金API/GooglePlayStore/RTDN

Php/アプリストア連携/返金API/GooglePlayStore/voided-purchases