Skip to content
atomicbrainman edited this page Feb 13, 2012 · 4 revisions

Original installation wiki

♖ List of Coppertino changes ♖

  • Application updates are uploaded in local folder
  • Added MacAppstore In-App tracking and statistics view

Mac App Store In-App tracking

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]"
Clone this wiki locally