forked from tylerhall/Shine
-
Notifications
You must be signed in to change notification settings - Fork 1
Home
atomicbrainman edited this page Feb 13, 2012
·
4 revisions
- Application updates are uploaded in local folder
- Added MacAppstore In-App tracking and statistics view
To track mac app store in-app purchase your application must send a request to inapp-track.php after purchase with such params (GET/POST):
- bundleid
- trxid (Transaction ID)
- inappid (Unique Item ID)
- trxdate (Date or Datetime of purchase)
- bundleversion (string)
- price (float, ex: 9.98)
- currency (char{3}, ex: "USD", "EUR")
- uuid (Unique ID of device which made the request)
- sign (data signature) =>
md5("%s.%s.%u.%s", {Applications custom salt}, uuid, trxdate, trxid )
{Applications custom salt} - Custom salt is now set in application settings
Response can be:
- "OK"
- "ERR[Error description]"