1

I'm trying to validate an iphone receipt from a c++ server (I have the receipt encrypted with base64, I'm composing a json object according to apple docs, and then I open a socket to the sandbox and send a POST request).

The server responds with error 503 Service Unavailable.

I suspect that I don't compose the POST request correctly.Does anyone know how should look the POST request for the apple store ?

Thanks

Sulea Cosmin
  • 598
  • 1
  • 11
  • 24
  • This may be related [In-app purchasing fail on iTunes is starting to bug developers](http://www.engadget.com/2011/09/23/in-app-purchasing-fail-on-itunes-is-starting-to-bug-developers/) – Joe Sep 23 '11 at 13:54
  • Interesting, ... I'll check again in a couple of hours – Sulea Cosmin Sep 23 '11 at 14:11
  • The [sandbox](https://sandbox.itunes.apple.com/verifyReceipt) should be working fine, the service appears to be up and responding. – David Snabel-Caunt Sep 23 '11 at 15:58

1 Answers1

1

I solved the problem, in this case the problem was that I was using the http instead of https.

Sulea Cosmin
  • 598
  • 1
  • 11
  • 24