我的代码如下:
def build_push_notification
pusher = Grocer.pusher(
certificate: "..", # change path
gateway: "gateway.push.apple.com",
port: 2195
)
notification = Grocer::Notification.new(
device_token: "..",
alert: "У вас новый заказ!",
badge: 42
)
pusher.push(notification)
end
"证书"和" device_token"我有有效的数据。我只是向iOS设备发送通知,这不是错误。
pusher.push(通知)返回值,似乎很好。但iOS设备中没有推送通知。
我做错了什么?
我可能遇到证书问题吗?