Last updated:
0 purchases
appodeal 0.9.3
Django application for Appodeal integration.
Install
Add ‘appodeal’ to INSTALLED_APPS
Add url(r’^/’, include(‘appodeal.urls’)), to urls.py
(optional) Add APPODEAL_SECRET_ANDROID to settings.py
(optional) Add APPODEAL_SECRET_IOS to settings.py
Add APPODEAL_REWARD_CREATE_HANDLER to settings.py
Run python manage.py migrate.
Add the callback URL in Appodeal “{https://example.com/reward/}?data1={data1}&data2={data2}”
Handler
It will be called with:
output:
A dict with the decrypted data from Appodeal
rewards:
A appodeal.Reward QuerySet with all the records with the same impression_id.
Should return a string that will be stored as result in the reward record.
If your handler fails the exception representation will be stored as the result.
output example
{
'user_id': user_id,
'amount': amount,
'currency': currency,
'impression_id': impression_id,
'timestamp': timestamp,
'hash': hash,
'output': output
}
Run tests
./runtests.py
Build/Publish
python setup.py sdist bdist_wheel
twine upload dist/*
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.