7

私はphpを使ってiOSアプリ用のサーバーを書いています。

Apple の appstore サーバーにアクセスしてレシートを確認したい。

アップルのヘルプドキュメントによると。Appleのサーバーに投稿リクエストを送信する必要があります。

http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/StoreKitGuide/VerifyingStoreReceipts/VerifyingStoreReceipts.html#//apple_ref/doc/uid/TP40008267-CH104-SW1

どうすればphpを使用してそれを行うことができますか、どうもありがとう!

誰でも例を挙げてもらえますか?

4

1 に答える 1

15
<?php

$applesharedsecret = "applesecretfromyourdevaccount";
$receiptbytes      = "......applereceipt.......";
$appleurl          = "https://buy.itunes.apple.com/verifyReceipt"; // for production
// use https://sandbox.itunes.apple.com/verifyReceipt for testing with sandbox receipt
$request = json_encode(array("receipt-data" => $receiptbytes,"password"=>$applesharedsecret));
$ch = curl_init($appleurl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
$jsonresult = curl_exec($ch);
curl_close($ch);
var_dump($jsonresult); // see the details of the receipt.

?>
于 2013-01-05T13:10:20.093 に答える