Skip to main content

Send a message using GCM HTTP connection server protocol

Project description

django-gcm-android-ios is a simple Django app to send a message using GCM HTTP connection server protocol.

Detailed documentation is in the “docs” directory.

https://travis-ci.org/hugobrilhante/django-gcm-android-ios.svg https://coveralls.io/repos/hugobrilhante/django-gcm-android-ios/badge.svg?branch=master&service=github Documentation Status https://img.shields.io/pypi/status/django-gcm-android-ios.svg https://img.shields.io/pypi/dm/django-gcm-android-ios.svg https://img.shields.io/pypi/l/django-gcm-android-ios.svg https://img.shields.io/github/release/hugobrilhante/django-gcm-android-ios.svg https://img.shields.io/pypi/pyversions/django-gcm-android-ios.svg

Quick start

  1. Install django-gcm-android-ios:

    pip install django-gcm-android-ios
  2. Add “gcm” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'gcm',
    )
  3. Add in setting api keys like this:

    GCM_DEVICE_MODEL = "DeviceModel" # default gcm.Device
    GCM_IOS_APIKEY = "IOS_APIKEY"
    GCM_ANDROID_APIKEY = "ANDROID_APIKEY"
  4. Include the gcm routers in your project urls.py like this:

    from gcm.routers import router
    url(r'api/', include(router.urls))
  5. Run python manage.py migrate to create the device models

  6. To register device:

    curl -X POST -H "Content-Type: application/json" -H "Authorization: "
     -d '{
        "dev_id": "Device id",
        "dev_type": "ANDROID or IOS",
        "reg_id": "Register id"
       }' 'http://localhost:8001/api/devices'
  7. To unregister device:

    curl -X DELETE -H "Content-Type: application/json" -H "Authorization: "
    'http://localhost:8001/api/devices/id_device'

Supported by

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