معرفی شرکت ها


appsflyer-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

AppsFlyer S2S events API client
ویژگی مقدار
سیستم عامل -
نام فایل appsflyer-0.1.0
نام appsflyer
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Frederico Jordan
ایمیل نویسنده fredericojordan@gmail.com
آدرس صفحه اصلی https://github.com/fredericojordan/appsflyer-python/
آدرس اینترنتی https://pypi.org/project/appsflyer/
مجوز -
# appsflyer-python [![PyPI](https://img.shields.io/pypi/v/appsflyer.svg)](https://pypi.python.org/pypi/appsflyer) [![Maintainability](https://api.codeclimate.com/v1/badges/6bc700e876085158380d/maintainability)](https://codeclimate.com/github/fredericojordan/appsflyer-python/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/6bc700e876085158380d/test_coverage)](https://codeclimate.com/github/fredericojordan/appsflyer-python/test_coverage) ## Documentation The documentation for AppsFlyer's Server-to-server events API for mobile can be found [here](https://support.appsflyer.com/hc/en-us/articles/207034486-Server-to-server-events-API-for-mobile-S2S-mobile-). ## Installation Install using [`pip`](https://pypi.org/project/pip/): ```shell pip install appsflyer ``` Alternatively, you may download the repository and run the installation directly: ```shell git clone https://github.com/fredericojordan/appsflyer-python.git cd appsflyer-python python setup.py install ``` ## Getting Started To start generating events, we need only a `Client` instance. The `Client` needs your AppsFlyer credentials. You can pass these directly to the constructor: ```python from appsflyer.rest import Client app_id = "XXXXXXXXXXXXXXXXX" dev_key = "YYYYYYYYYYYYYYYY" appsflyer_client = Client(app_id=app_id, dev_key=dev_key) ``` - `app_id`: The app identifier used in the AppsFlyer dashboard. Insert it precisely as it appears on the dashboard. - `dev_key`: The authentication token in the header. To get the dev key, in the AppsFlyer dashboard go to: **App Settings > Dev Key** ### Generating an Event To generate an event, simply call `Client.generate_event()` with keyword arguments: ```python from appsflyer.rest import Client app_id = "XXXXXXXXXXXXXXXXX" dev_key = "YYYYYYYYYYYYYYYY" appsflyer_client = Client(app_id=app_id, dev_key=dev_key) appsflyer_client.generate_event( appsflyer_id="9999999999999-9999999999999999999", customer_user_id="example_customer_id_123", ip="199.0.2.1", app_version_name="example_version_name", event_time="2020-02-25 12:00.000", event_name="af_purchase", event_currency="ZAR", event_value={ "af_revenue": "1006", "af_content_type": "wallets", "af_content_id": "15854", "af_quantity": "1", }, ) ``` The parameters `event_name`, `event_value` and `appsflyer_id` are mandatory. ### Device Identifiers Additional data parameters (such as an [IDFA] or [GAID] identifiers) may be sent as keyword arguments: ```python appsflyer_client.generate_event( appsflyer_id="9999999999999-9999999999999999999", event_name="af_purchase", event_value={"af_revenue": "420"}, idfa="9876F1SS-2983-3855-27RR-2R626772VFNB", ) ``` [AppsFlyer API](https://support.appsflyer.com/hc/en-us/articles/207034486-Server-to-server-events-API-for-mobile-S2S-mobile-#payload-parameters) expects one or more of the following device identifiers: - `idfa` - `idfv` - `advertising_id` (GAID) - `oaid` - `amazon_aid` - `imei` [IDFA]: https://developer.apple.com/documentation/appstoreconnectapi/advertising_identifier_idfa_declarations [GAID]: https://support.google.com/googleplay/android-developer/answer/6048248


نیازمندی

مقدار نام
>=2.0.0 requests


نحوه نصب


نصب پکیج whl appsflyer-0.1.0:

    pip install appsflyer-0.1.0.whl


نصب پکیج tar.gz appsflyer-0.1.0:

    pip install appsflyer-0.1.0.tar.gz