Skip to content

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

License

Notifications You must be signed in to change notification settings

Dgo-list/django-gcm-android-ios

 
 

Repository files navigation

Django GCM Android iOS (Deprecate due Firebase Cloud Messaging)

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://coveralls.io/repos/hugobrilhante/django-gcm-android-ios/badge.svg?branch=master&service=github Documentation Status

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'
    
Join the chat at https://gitter.im/hugobrilhante/django-gcm-android-ios

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%