gpt4 book ai didi

ios - 用于在 Apple IOS 中取消应用内购买的 URL

转载 作者:行者123 更新时间:2023-11-29 00:06:42 24 4
gpt4 key购买 nike

我正在使用 Apple 和 Java 来验证 IN 应用程序 以此方式购买

public static void  validateProductPurhcaseReceipt(String receiptData, String VERIFICATION_URL)
{
Map outPut = new HashMap();
HttpClient httpClient = new DefaultHttpClient();
try {
HttpPost request = new HttpPost(VERIFICATION_URL);
JSONObject requestData = new JSONObject();
requestData.put("receipt-data", receiptData);
requestData.put("password", "f1ebdc2f49664d7188b4d83f90131ecf");
StringEntity requestEntity = new StringEntity(requestData.toString());
request.addHeader("content-type", "application/x-www-form-urlencoded");
request.setEntity(requestEntity);
HttpResponse response = httpClient.execute(request);
String responseBody = EntityUtils.toString(response.getEntity());
JSONObject responseJSON = new JSONObject(responseBody);
System.out.println(responseJSON);
}
catch (Exception ex) {
ex.printStackTrace();
}
finally {
httpClient.getConnectionManager().shutdown();
}

}

我使用的 URL 用于 verifyReceipt

Development mode = https://sandbox.itunes.apple.com/verifyReceipt
Production mode = https://buy.itunes.apple.com/verifyReceipt

您能告诉我取消应用内购买的 URL 吗

最佳答案

无法取消 IAP。如果是自动续订,用户可以选择在下次续订之前从他们的 iTunes 设置中取消订阅。如果是一次性购买,IAP 要么通过要么失败。

这是一个 Apple support doc解释不同类型的 IAP

如果您想了解如何在验证失败时取消 IAP,this SO question讨论它 ( and this )。

关于ios - 用于在 Apple IOS 中取消应用内购买的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47831082/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com