Skip to content

Instantly share code, notes, and snippets.

@mid0111
Created April 22, 2014 12:38
Show Gist options
  • Save mid0111/11177418 to your computer and use it in GitHub Desktop.
Save mid0111/11177418 to your computer and use it in GitHub Desktop.
GCM PUSH送信のメモ

GCM PUSH送信のメモ

メッセージ送信

 % curl https://android.googleapis.com/gcm/send -H "Content-Type: application/json" -H "Authorization:key=AIzaSyDWggtwcFnJ8Kxjob-4okYUCa85Z3DlzA0" -XPOST  -d '
 {
    "collapse_key":"test",
     "data":{"Text":"テストだよ"},
     "registration_ids":["aa", "bb"]
 }
' ; echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment