Skip to content

Instantly share code, notes, and snippets.

@TonnyXu
Created September 10, 2011 05:36
Show Gist options
  • Save TonnyXu/1207975 to your computer and use it in GitHub Desktop.
Save TonnyXu/1207975 to your computer and use it in GitHub Desktop.
IAP Verification server definication
// APPSTORE is a macro defined in AppStore build configuration.
// You need to do it yourself. Xcode won't help
#ifdef APPSTORE
NSString * const verificationURL = @"http://www.yourserver.com/verify?usingSandbox=1";
#else
NSString * const verificationURL = @"http://www.yourserver.com/verify?usingSandbox=0";
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment