'Apple iTunes In-app purchase verification api.'
Project description
Python 2 & 3 compatible! Even with asyncio support!
Source code: https://github.com/youknowone/itunes-iap
Documentation: http://itunes-iap.readthedocs.io/
Distribution: https://pypi.python.org/pypi/itunes-iap/
Quickstart
Create request to create a request to itunes verifying api.
>>> import itunesiap
>>> try:
>>> response = itunesiap.verify(raw_data) # base64-encoded data
>>> except itunesiap.exc.InvalidReceipt as e:
>>> print('invalid receipt')
>>> print response.receipt.last_in_app.product_id # other values are also available as property!
- The common attributes are:
product_id, original_transaction_id and quantity.
- See the full document in:
itunesiap.verify: The verifying function.
itunesiap.receipt.Receipt: The receipt object.
asyncio
>>> import itunesiap
>>> response = await itunesiap.aioverify(raw_data) # verify -> aioverify
The other parts are the same.
- See the full document in:
itunesiap.aioverify: The verifying function.
Installation
PyPI is the recommended way.
$ pip install itunes-iap
- To browse versions and tarballs, visit:
Apple in-review mode
In review mode, your actual users who use older versions want to verify in production server but the reviewers in Apple office want to verify in sandbox server.
Note: The default env is production mode which doesn’t allow any sandbox verifications.
You can change the verifying mode by specifying env.
>>> # review mode
>>> itunesiap.verify(raw_data, env=itunesiap.env.review)
Note for v1 users
There was breaking changes between v1 and v2 APIs.
Specify version 0.6.6 for latest v1 API when you don’t need new APIs.
Or use import itunesiap.legacy as itunesiap instead of import itunesiap. (from itunesiap import xxx to from itunesiap.legacy import xxx)
Contributors
See https://github.com/youknowone/itunes-iap/graphs/contributors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file itunes-iap-2.6.1.tar.gz
.
File metadata
- Download URL: itunes-iap-2.6.1.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c472e99fc57b9d49da705cfdcc0ed181dc3de89b7bdfdfbbd386e9a2ff256197 |
|
MD5 | d8a487fa054d88b466b2cb6114978108 |
|
BLAKE2b-256 | dae3299a40a46649ae8cef5501d4a341c84d7cb551e9c24d9701485f87f237a0 |