Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a...

25
itunes-iap Documentation Release 2.6.0 Jeong YunWon Dec 27, 2019

Transcript of Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a...

Page 1: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap DocumentationRelease 2.6.0

Jeong YunWon

Dec 27, 2019

Page 2: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,
Page 3: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

Contents:

1 Quickstart 31.1 itunesiap.verify() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31.2 Apple in-review mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41.3 Password for shared secret . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

2 Request 7

3 Receipt 11

4 Environment 134.1 How to use environments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134.2 Review mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134.3 Environment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14

5 itunes-iap v2 155.1 Quickstart . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155.2 asyncio . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165.3 Installation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165.4 Apple in-review mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165.5 Note for v1 users . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165.6 Contributors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16

6 Indices and tables 17

Python Module Index 19

Index 21

i

Page 4: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

ii

Page 5: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface forthem too.

Contents: 1

Page 6: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

2 Contents:

Page 7: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

CHAPTER 1

Quickstart

Create request to create a request to itunes verify 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 properties!

Practically useful attributes are: product_id, original_transaction_id, quantity and unique_identifier. See the fulldocument in itunesiap.receipt.InApp.

For asyncio, replace itunesiap.verify() funciton to itunesiap.aioverify(). That’s all.

>>> response = itunesiap.aioverify(raw_data)

1.1 itunesiap.verify()

Note that most of the use cases are covered by the itunesiap.verify() function.

itunesiap.verify(receipt_data, password=None, exclude_old_transactions=False, **kwargs)Shortcut API for itunesiap.request.Request.

See also:

• Receipt_Validation_Programming_Guide.

Parameters

• receipt_data (str) – itunesiap.request.Request argument. An iTunes re-ceipt data as Base64 encoded string.

3

Page 8: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

• password (str) – itunesiap.request.Request argument. Optional. Only usedfor receipts that contain auto-renewable subscriptions. Your app’s shared secret (a hexadec-imal string).

• exclude_old_transactions (bool) – itunesiap.request.Request argu-ment. Optional. Only used for iOS7 style app receipts that contain auto-renewable or non-renewing subscriptions. If value is true, response includes only the latest renewal transactionfor any subscriptions.

• env (itunesiap.environment.Environment) – Set base environment value. Seeitunesiap.environment for detail.

• timeout (float) – itunesiap.request.Request.verify() argument.Keyword-only optional. The value is connection timeout of the verifying request. Thedefault value is 30.0 when no env is given.

• use_production (bool) – itunesiap.request.Request.verify() argu-ment. Keyword-only optional. The value is weather verifying in production server or not.The default value is bool True when no env is given.

• use_sandbox (bool) – itunesiap.request.Request.verify() argument.Keyword-only optional. The value is weather verifying in sandbox server or not. The defaultvalue is bool False when no env is given.

• verify_ssl (bool) – itunesiap.request.Request.verify() argument.Keyword-only optional. The value is weather enabling SSL verification or not. WARNING:DO NOT TURN IT OFF WITHOUT A PROPER REASON. IF YOU DON’T UNDER-STAND WHAT IT MEANS, NEVER SET IT YOURSELF.

• proxy_url (str) – Keyword-only optional. A proxy url to access the iTunes validationurl.

Returns itunesiap.receipt.Receipt object if succeed.

Raises Otherwise raise a request exception in itunesiap.exceptions.

itunesiap.aioverify(receipt_data, password=None, exclude_old_transactions=False, **kwargs)Shortcut API for itunesiap.request.Request.

Note that python3.4 support is only available at itunesiap==2.5.1

For params and returns, see itunesiap.verify().

1.2 Apple in-review mode

In review mode, your actual users who use older versions want to verify in production server but the reviewers inApple 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)>>> # sandbox mode>>> itunesiap.verify(raw_data, env=itunesiap.env.sandbox)

Also directly passing arguments are accepted:

4 Chapter 1. Quickstart

Page 9: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

>>> # review mode>>> itunesiap.verify(raw_data, use_production=True, use_sandbox=True)

1.3 Password for shared secret

When you have shared secret for your app, the verifying process requires a shared secret password.

About the shared secret, See: In-App_Purchase_Configuration_Guide.

>>> try:>>> # Add password as a parameter>>> response = itunesiap.verify(raw_data, password=password)>>> except itunesiap.exc.InvalidReceipt as e:>>> print('invalid receipt')>>> in_app = response.receipt.last_in_app # Get the latest receipt returned by Apple

1.3. Password for shared secret 5

Page 10: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

6 Chapter 1. Quickstart

Page 11: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

CHAPTER 2

Request

itunesiap.request

class itunesiap.request.Request(receipt_data, password=None, ex-clude_old_transactions=False, **kwargs)

Validation request with raw receipt.

Use verify method to try verification and get Receipt or exception. For detail, see also theApple document: https://developer.apple.com/library/content/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html.

Parameters

• receipt_data (str) – An iTunes receipt data as Base64 encoded string.

• password (str) – Only used for receipts that contain auto-renewable subscriptions. Yourapp’s shared secret (a hexadecimal string).

• exclude_old_transactions (bool) – Only used for iOS7 style app receipts thatcontain auto-renewable or non-renewing subscriptions. If value is true, response includesonly the latest renewal transaction for any subscriptions.

• proxy_url – A proxy url to access the iTunes validation url. (It is an attribute ofverify() but misplaced here)

aioverify(**options)Try to verify the given receipt with current environment.

Note that python3.4 support is only available at itunesiap==2.5.1

See also:

• Receipt_Validation_Programming_Guide.

Parameters

• env (itunesiap.environment.Environment) – Override the environment.

• timeout (float) – The value is connection timeout of the verifying request. The de-fault value is 30.0 when no env is given.

7

Page 12: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

• use_production (bool) – The value is weather verifying in production server or not.The default value is bool True when no env is given.

• use_sandbox (bool) – The value is weather verifying in sandbox server or not. Thedefault value is bool False when no env is given.

• verify_ssl (bool) – The value will be ignored.

Returns itunesiap.receipt.Receipt object if succeed.

Raises Otherwise raise a request exception.

request_contentInstantly built request body for iTunes.

verify(**options)Try verification with current environment.

See also:

• Receipt_Validation_Programming_Guide.

Parameters

• env (itunesiap.environment.Environment) – Override the environment.

• timeout (float) – The value is connection timeout of the verifying request. The de-fault value is 30.0 when no env is given.

• use_production (bool) – The value is weather verifying in production server or not.The default value is bool True when no env is given.

• use_sandbox (bool) – The value is weather verifying in sandbox server or not. Thedefault value is bool False when no env is given.

• verify_ssl (bool) – The value is weather enabling SSL verification or not. WARN-ING: DO NOT TURN IT OFF WITHOUT A PROPER REASON. IF YOU DON’T UN-DERSTAND WHAT IT MEANS, NEVER SET IT YOURSELF.

Returns itunesiap.receipt.Receipt object if succeed.

Raises Otherwise raise a request exception.

verify_from(url, timeout=None, verify_ssl=True)The actual implemention of verification request.

verify() calls this method to try to verifying for each servers.

Parameters

• url (str) – iTunes verification API URL.

• timeout (float) – The value is connection timeout of the verifying request. The de-fault value is 30.0 when no env is given.

• verify_ssl (bool) – SSL verification.

Returns itunesiap.receipt.Receipt object if succeed.

Raises Otherwise raise a request exception.

itunesiap.exceptions

exception itunesiap.exceptions.ItunesServerNotAvailable(*args, **kwargs)iTunes server is not available. No response.

8 Chapter 2. Request

Page 13: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

exception itunesiap.exceptions.ItunesServerNotReachable(*args, **kwargs)iTunes server is not reachable - including connection timeout.

exception itunesiap.exceptions.InvalidReceipt(response_data)A receipt was given by iTunes server but it has error.

9

Page 14: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

10 Chapter 2. Request

Page 15: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

CHAPTER 3

Receipt

itunesiap.receipt

A successful response returns a JSON object including receipts. To manipulate them in convinient way, itunes-iapwrapped it with ObjectMapper.

class itunesiap.receipt.ObjectMapper(data)A pretty interface for decoded receipt object.

__DOCUMENTED_FIELDS__ and __UNDOCUMENTED_FIELDS__ are managed lists of field names. Theyare regarded as safe values and guaranteed to be converted in python representation when needed. When a fieldexists in __OPAQUE_FIELDS__, its result will be redirected. The common type is str. When a field exists in__FIELD_ADAPTERS__, it will be converted to corresponding python data representation.

To access to the converted value, use a dictionary key as an attribute name. For example, the key receipt isaccessible by:

>>> mapper.receipt # return converted python object Receipt>>> # == Receipt(mapper['receipt'])

To access to the raw JSON value, use a dictionary key as an attribute name but with the prefix _. For example,the key receipt is accessible by:

>>> mapper._receipt # return converted python object Receipt>>> # == mapper['receipt']

Parameters data (dict) – A JSON object.

Returns ObjectMapper

class itunesiap.receipt.Response(data)The root response.

About the value of status:

• See https://developer.apple.com/library/ios/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html#//apple_ref/doc/uid/TP40010573-CH104-SW1

11

Page 16: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

__DOCUMENTED_FIELDS__ = frozenset({'receipt', 'pending_renewal_info', 'latest_receipt', 'latest_receipt_info', 'status'})

__FIELD_ADAPTERS__ = {'pending_renewal_info': <bound method ObjectMapper.from_list of <class 'itunesiap.receipt.PendingRenewalInfo'>>, 'receipt': <class 'itunesiap.receipt.Receipt'>, 'status': <class 'int'>}

__OPAQUE_FIELDS__ = frozenset({'latest_receipt'})

__UNDOCUMENTED_FIELDS__ = frozenset()

class itunesiap.receipt.Receipt(data)The actual receipt.

The receipt may hold only one purchase directly in receipt object or may hold multiple purchases in in_app key.This object encapsulate it to list of InApp object in in_app property.

See https://developer.apple.com/library/content/releasenotes/General/ValidateAppStoreReceipt/Chapters/ReceiptFields.html

__DOCUMENTED_FIELDS__ = frozenset({'expiration_date', 'auto_renew_product_id', 'application_version', 'original_purchase_date', 'original_application_version', 'expires_date', 'auto_renew_status', 'purchase_date', 'cancellation_reason', 'transaction_id', 'receipt_creation_date', 'bundle_id', 'version_external_identifier', 'app_item_id', 'price_consent_status', 'is_in_intro_offer_period', 'cancellation_date', 'web_order_line_item_id', 'is_in_billing_retry_period', 'product_id', 'quantity', 'in_app', 'original_transaction_id'})

__FIELD_ADAPTERS__ = {'auto_renew_status': <class 'int'>, 'cancellation_date': <function _rfc3339_to_datetime>, 'cancellation_reason': <class 'int'>, 'expiration_date': <function _rfc3339_to_datetime>, 'expiration_date_ms': <class 'int'>, 'expiration_intent': <class 'int'>, 'expires_date': <function _ms_to_datetime>, 'expires_date_ms': ('expires_date', <class 'int'>), 'is_in_billing_retry_period': <function _to_bool>, 'is_in_intro_offer_period': <function _to_bool>, 'original_purchase_date': <function _rfc3339_to_datetime>, 'original_purchase_date_ms': <class 'int'>, 'price_consent_status': <class 'int'>, 'purchase_date': <function _rfc3339_to_datetime>, 'purchase_date_ms': <class 'int'>, 'quantity': <class 'int'>, 'receipt_creation_date': <function _rfc3339_to_datetime>, 'receipt_creation_date_ms': <class 'int'>, 'request_date': <function _rfc3339_to_datetime>, 'request_date_ms': <class 'int'>}

__OPAQUE_FIELDS__ = frozenset({'product_id', 'bundle_id', 'auto_renew_product_id', 'application_version', 'version_external_identifier', 'expires_date_formatted', 'app_item_id', 'transaction_id', 'original_transaction_id', 'web_order_line_item_id', 'original_application_version'})

__UNDOCUMENTED_FIELDS__ = frozenset({'original_purchase_date_ms', 'request_date', 'purchase_date_ms', 'receipt_creation_date_ms', 'version_external_identifier', 'request_date_ms', 'expires_date_formatted', 'unique_identifier', 'expiration_date_ms'})

class itunesiap.receipt.InApp(data)

__DOCUMENTED_FIELDS__ = frozenset({'product_id', 'expires_date', 'is_trial_period', 'quantity', 'purchase_date', 'cancellation_reason', 'original_purchase_date', 'transaction_id', 'original_transaction_id', 'web_order_line_item_id', 'cancellation_date'})

__FIELD_ADAPTERS__ = {'cancellation_date': <function _rfc3339_to_datetime>, 'cancellation_date_ms': <class 'int'>, 'cancellation_reason': <class 'int'>, 'expires_date': <function _rfc3339_to_datetime>, 'expires_date_ms': <class 'int'>, 'is_trial_period': <function _to_bool>, 'original_purchase_date': <function _rfc3339_to_datetime>, 'original_purchase_date_ms': <class 'int'>, 'purchase_date': <function _rfc3339_to_datetime>, 'purchase_date_ms': <class 'int'>, 'quantity': <class 'int'>}

__OPAQUE_FIELDS__ = frozenset({'product_id', 'expires_date_formatted', 'transaction_id', 'original_transaction_id', 'web_order_line_item_id', 'unique_identifier'})

__UNDOCUMENTED_FIELDS__ = frozenset({'original_purchase_date_ms', 'purchase_date_ms', 'cancellation_date_ms', 'expires_date_formatted', 'unique_identifier'})

12 Chapter 3. Receipt

Page 17: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

CHAPTER 4

Environment

itunesiap.environment

Environment is designed to pass pre-defined policies in easy way. The major use cases are provided as pre-definedconstants.

4.1 How to use environments

The default policy is default and it is the same to production. When your development lifecycle is proceed, you wantto change it to sandbox or review.

The recommended way to use environments is passing the value to itunesiap.verify() function as keywordargument env.

>>> itunesiap.verify(receipt, env=itunesiap.env.production)>>> itunesiap.verify(receipt, env=itunesiap.env.sandbox)>>> itunesiap.verify(receipt, env=itunesiap.env.review)

4.2 Review mode

This is useful when your server is being used both for real users and Apple reviewers. Using review mode for a realservice is possible, but be aware of: it is not 100% safe. Your testers can getting advantage of free IAP in productionversion. A rough solution what I suggest is:

>>> if client_version == review_version:>>> env = itunesiap.env.review>>> else:>>> env = itunesiap.env.production>>>>>> itunesiap.verify(receipt, env=env)

13

Page 18: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

4.3 Environment

class itunesiap.environment.Environment(**kwargs)Environment provides option preset for Request. default is default.

By passing an environment object to itunesiap.verify() or itunesiap.request.Request.verify() function, it replaces verifying policies.

clone(**kwargs)Clone the environment with additional parameter override

extract()Extract options from self and merge to kwargs then return a new dictionary with the values.

override(**kwargs)Override options in kwargs to given object self.

itunesiap.environment.default = <Environment use_production=True use_sandbox=False timeout=30.0 exclude_old_transactions=False verify_ssl=True>Use only production server with 30 seconds of timeout.

itunesiap.environment.production = <Environment use_production=True use_sandbox=False timeout=30.0 exclude_old_transactions=False verify_ssl=True>Use only production server with 30 seconds of timeout.

itunesiap.environment.sandbox = <Environment use_production=False use_sandbox=True timeout=30.0 exclude_old_transactions=False verify_ssl=True>Use only sandbox server with 30 seconds of timeout.

itunesiap.environment.review = <Environment use_production=True use_sandbox=True timeout=30.0 exclude_old_transactions=False verify_ssl=True>Environment provides option preset for Request. default is default.

By passing an environment object to itunesiap.verify() or itunesiap.request.Request.verify() function, it replaces verifying policies.

itunesiap.environment.unsafe = <Environment use_production=True use_sandbox=True timeout=None exclude_old_transactions=False verify_ssl=False>Environment provides option preset for Request. default is default.

By passing an environment object to itunesiap.verify() or itunesiap.request.Request.verify() function, it replaces verifying policies.

14 Chapter 4. Environment

Page 19: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

CHAPTER 5

itunes-iap v2

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/

5.1 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.

15

Page 20: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

5.2 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.

5.3 Installation

PyPI is the recommended way.

$ pip install itunes-iap

To browse versions and tarballs, visit: https://pypi.python.org/pypi/itunes-iap/

5.4 Apple in-review mode

In review mode, your actual users who use older versions want to verify in production server but the reviewers inApple 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)

5.5 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 fromitunesiap.legacy import xxx)

5.6 Contributors

See https://github.com/youknowone/itunes-iap/graphs/contributors

16 Chapter 5. itunes-iap v2

Page 21: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

CHAPTER 6

Indices and tables

• genindex

• modindex

• search

17

Page 22: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

18 Chapter 6. Indices and tables

Page 23: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

Python Module Index

iitunesiap.environment, 13itunesiap.exceptions, 8itunesiap.receipt, 11itunesiap.request, 7

19

Page 24: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

itunes-iap Documentation, Release 2.6.0

20 Python Module Index

Page 25: Release 2.6 · itunes-iap is an easy way to verify iTunes In-App Purchase receipts. It also is a powerful and flexible interface for them too. Contents: 1. itunes-iap Documentation,

Index

Symbols__DOCUMENTED_FIELDS__ (itunesiap.receipt.InApp

attribute), 12__DOCUMENTED_FIELDS__ (itune-

siap.receipt.Receipt attribute), 12__DOCUMENTED_FIELDS__ (itune-

siap.receipt.Response attribute), 11__FIELD_ADAPTERS__ (itunesiap.receipt.InApp at-

tribute), 12__FIELD_ADAPTERS__ (itunesiap.receipt.Receipt at-

tribute), 12__FIELD_ADAPTERS__ (itunesiap.receipt.Response

attribute), 12__OPAQUE_FIELDS__ (itunesiap.receipt.InApp

attribute), 12__OPAQUE_FIELDS__ (itunesiap.receipt.Receipt at-

tribute), 12__OPAQUE_FIELDS__ (itunesiap.receipt.Response at-

tribute), 12__UNDOCUMENTED_FIELDS__ (itune-

siap.receipt.InApp attribute), 12__UNDOCUMENTED_FIELDS__ (itune-

siap.receipt.Receipt attribute), 12__UNDOCUMENTED_FIELDS__ (itune-

siap.receipt.Response attribute), 12

Aaioverify() (in module itunesiap), 4aioverify() (itunesiap.request.Request method), 7

Cclone() (itunesiap.environment.Environment method),

14

Ddefault (in module itunesiap.environment), 14

EEnvironment (class in itunesiap.environment), 14

extract() (itunesiap.environment.Environmentmethod), 14

IInApp (class in itunesiap.receipt), 12InvalidReceipt, 9itunesiap.environment (module), 13itunesiap.exceptions (module), 8itunesiap.receipt (module), 11itunesiap.request (module), 7ItunesServerNotAvailable, 8ItunesServerNotReachable, 8

OObjectMapper (class in itunesiap.receipt), 11override() (itunesiap.environment.Environment

method), 14

Pproduction (in module itunesiap.environment), 14

RReceipt (class in itunesiap.receipt), 12Request (class in itunesiap.request), 7request_content (itunesiap.request.Request at-

tribute), 8Response (class in itunesiap.receipt), 11review (in module itunesiap.environment), 14

Ssandbox (in module itunesiap.environment), 14

Uunsafe (in module itunesiap.environment), 14

Vverify() (in module itunesiap), 3verify() (itunesiap.request.Request method), 8verify_from() (itunesiap.request.Request method),

8

21