Skip to main content

AdPushUp ads.txt management API.

Project description

This library provides adpushup API for handling ads.txt management.

Django:

  1. add it to installed apps:

    INSTALLED_APPS = (
        ...,
        'adpushup_adstxt',
        ...,
        )
    
  2. add your user_id and key to YOUR settings.py:

    ADPUSHUP_API_USER_ID = 'test@example.com'
    ADPUSHUP_API_KEY = '1234'
    
  3. OPTIONALLY add different WWW_DIR:

    ADPUSHUP_WWW_DIR = '/some/dir/to/put/ads.txt/in/it/'
    

    by default it is Djangos ROOT_DIR + '/www'

  4. ADD it to your urlconf:

    from adpushup_adstxt.django_views import handle
    
    urlpatterns += patterns(
        '',
        url(r'^adsTxtManagementApiByAdpushup.php', handle)),
    

Testing:

from adpushup_adstxt.utils import encode_uri_component
import time
import hmac
import hashlib
import requests

user_id = 'your user id'
key = 'your key'

req_time = int(time.time())
hash_params = "email={}&ts={}".format(
    encode_uri_component(user_id.encode("UTF-8")), req_time)
hash = hmac.new(key, hash_params, hashlib.sha256).hexdigest()

res = requests.post(
    'http://localhost:8000/adsTxtManagementApiByAdpushup.php',
    dict(
        data='test content',
        ts=req_time,
        hash=hash))

print res.status_code
print res.content

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adpushup-adstxt-0.1.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

adpushup_adstxt-0.1.2-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page