Nolmandy Build Status
Nolmandy is an Apple receipt processing server. You can use nolmandy instead of https://sandbox.itunes.apple.com/verifyReceipt .
Also you can use nolmandy as a receipt processing library.
This product is at an early stage of development and not fully implemented.
Install nolmandy command.
go get github.com/aktsk/nolmandy/cmd/nolmandy
Run nolmandy command to validate a receipt by Apple Root certificate.
cat receipt | nolmandy
You can validate a certificate by your own certificate.
cat receipt | nolmandy -certFile cert.pem
Install nolmandy-server command.
go get github.com/aktsk/nolmandy/cmd/nolmandy-server
Run nolmandy server.
nolmandy-server -port 8000
Post base64 encoded receipt data to nolmandy server.
curl -s -H 'Content-Type:application/json' -d '{ "receipt-data": "MIIeWQYJK..." }' \
http://localhost:8000/
You can use your own certificate instead of Apple certificate.
nolmandy-server -certFile cert.pem
You can parse base64 encoded receipt data and validate it.
package main import ( "log" "github.com/aktsk/nolmandy/receipt" ) func main() { rcpt, err := receipt.ParseWithAppleRootCert("MIIT6QYJK...") if err != nil { log.Fatal("Parse error") } result, err := rcpt.Validate() // Validate() does nothing currently ... if err != nil { log.Fatal("Validation error") } if result.Status == 0 { log.Println("Validation success") } }
You can use your own certificate instead of Apple root certificate like this.
func main() { certFile, _ := os.Open("cert.pem") certPEM, _ := ioutil.ReadAll(certFile) certDER, _ := pem.Decode(certPEM) cert, _ = x509.ParseCertificate(certDER.Bytes) rcpt, err := receipt.Parse(cert, "MIIT6QYJK...") if err != nil { log.Fatal("Parse error") } result, err := rcpt.Validate() // Validate() does nothing currently ... if err != nil { log.Fatal("Validation error") } if result.Status == 0 { log.Println("Validation success") } }
You can run nolmandy server on Google App Engine.
cd appengine/app
make deploy
If you'd like to use your own certificate instead of Apple certificate, put a certificate file as cert.pem under appengine/app directory. Or you can set your certificate in app.yaml like this.
env_variables: # It seems GAE/Go could not handle environment variables # that has return code.So use ">-" to replace return code # with white space CERTIFICATE: >- -----BEGIN CERTIFICATE----- MIIB3TCCAUagAwIBAgIEcotswjANBgkqhkiG9w0BAQsFADAoMRAwDgYDVQQKEwdB Y21lIENvMRQwEgYDVQQDEwtUZXN0IElzc3VlcjAgFw0xODA0MDIwNDA2MjlaGA8z ODQzMDQwMjA0MDYyOVowKDEQMA4GA1UEChMHQWNtZSBDbzEUMBIGA1UEAxMLVGVz dCBJc3N1ZXIwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMb89jkLRDjud2Xt tYoXscWCGTKAr+TYv7dwk7YXqabv4bhH5X15sbg9cp5UWZzu7ygoX4+N/48Aa/AZ Sh8ppQZYpa73ximUesF8W+ZDXeOsexoPuRyXKltjXX/eLklBldVBB8Weyip4WhmG TCguTUW5eFPtseIEBHxto12jB6gnAgMBAAGjEjAQMA4GA1UdDwEB/wQEAwICpDAN BgkqhkiG9w0BAQsFAAOBgQC+abUGkSNC5n6r4TjbCrAHZcFI0yCcK38fS2g9c7lb VcvltNox2SWL9oyjybdzm1iZoVtsHXuQ8RKszdVKCh7N1RUOGDgtuwfP2XnKCKoP W9VfLKZ+Y4YnouEZBUjsS39dgLC2EJ66e3kWfCrR6HNsSWwE0A3mVnfNUwLvgtH/ QQ== -----END CERTIFICATE-----
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
See LICENSE.