pd_officer/plugins/phonegap-plugin-push/example/server/pushGCM.rb
2019-09-12 15:13:49 +05:30

10 lines
314 B
Ruby
Executable File

require 'rubygems'
require 'pushmeup'
GCM.host = 'https://android.googleapis.com/gcm/send'
GCM.format = :json
GCM.key = "API_KEY_GOES_HERE"
destination = ["REGISTRATION_ID_GOES_HERE"]
data = {:message => "PhoneGap Build rocks!", :msgcnt => "1", :soundname => "beep.wav"}
GCM.send_notification( destination, data)