apnserver gem 不从 ruby 守护进程发送消息
我正在使用 apnserver gem 将消息从我的 ruby 守护进程推送到 apns,但是消息没有被传递,它没有显示错误。我尝试从命令行发送
apnsend --server gateway.push.apple.com --port 2195 --pem /home/fstech/anand/apps/demon/daemon_apns/tmp/apns-dev.pem \--hex-token 8ac76314c57640486952918f236cad321fb8cddcfa4394f191aafdf9b65cfa83\ --sound default \--alert Hello
这是我使用的代码,我使用了一条消息作为“你好”
请帮忙! :)
i am using apnserver gem to push messages from my ruby daemon to apns, but messages are not being delivered, it shows no error. i tried sending from command line
apnsend --server gateway.push.apple.com --port 2195 --pem /home/fstech/anand/apps/demon/daemon_apns/tmp/apns-dev.pem \--hex-token 8ac76314c57640486952918f236cad321fb8cddcfa4394f191aafdf9b65cfa83\ --sound default \--alert Hello
this is the code i used, i used a message as "hello"
please help!! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案..它正在向苹果沙箱发送消息!将服务器更改为
gateway.push.apple.com
使其正常工作:)I figured out the answer.. it was sending messages to apple sandbox! changing the server to
gateway.push.apple.com
made it work :)