Created
December 17, 2015 12:40
-
-
Save eugena/54eb1195c1465a24a337 to your computer and use it in GitHub Desktop.
GCM push notification with title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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