Skip to content

Instantly share code, notes, and snippets.

@eugena
Created December 17, 2015 12:40
Show Gist options
  • Save eugena/54eb1195c1465a24a337 to your computer and use it in GitHub Desktop.
Save eugena/54eb1195c1465a24a337 to your computer and use it in GitHub Desktop.
GCM push notification with title
from push_notifications.models import GCMDevice
device = GCMDevice.objects.get(registration_id='...')
device.send_message('This is a message', extra={"title": "This is a title"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment