Hi!
I noticed that Apple added "Subscription Status URL" to iTunes Connect and updated In-App documentation on Jul 13. So I checked if new fields appear in response from https://sandbox.itunes.apple.com/verifyReceipt and found out that payload doesn't have them.
Here are links to documentation:
Does anyone know if all this staff currently work? And if so, how to get a new style response from verifyReceipt endpoint?
Thank you!
UPDATE:
For a quick check, I used very simple PHP code (pay attention to the new "exclude-old-transactions" param that doesn't change anything right now):
$url = "https://sandbox.itunes.apple.com/verifyReceipt";
$request = json_encode(array("receipt-data" => "YOUR_RECEIPT", "password"=>"APPLE_SHARED_SECRET", "exclude-old-transactions"=>true));
$ch = curl_init($url);
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);