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

13 lines
410 B
Ruby
Executable File

require 'rubygems'
require 'pushmeup'
APNS.host = 'gateway.sandbox.push.apple.com'
APNS.port = 2195
APNS.pem = '</path/to/my/certificate/ck.pem>'
APNS.pass = '<myCertificatePassword>'
device_token = '<device token gleaned from xcode console>'
# APNS.send_notification(device_token, 'Hello iPhone!' )
APNS.send_notification(device_token, :alert => 'PushPlugin works!!', :badge => 1, :sound => 'beep.wav')