使用NodeJS的iOS推送通知 - 凭据

时间:2013-12-08 15:34:47

标签: ios node.js push-notification engineyard apnagent

我需要实现服务器端代码,以便将通知推送到iOS应用。我跟着this link

问题是我总是得到'凭据不足'的消息。我正在使用apnagent节点模块。

有没有人尝试过这个?我应该做些什么来设置我的凭据?

提前致谢。

1 个答案:

答案 0 :(得分:3)

是的,我刚开始跑步。假设您正确设置了证书和应用程序,我可以使用以下任一方法:

  • certificate.p12和passphrase,
  • cert.pem和key.pem文件

那是:

agent
    .set('cert file', join(__dirname, '../_cert/apn-dev-cert.pem'))
    .set('key file', join(__dirname, '../_cert/apn-dev-key.pem'))
    //or this works too:
    // .set('pfx file', join(__dirname, '../_cert/Certificates.p12'))
    // .set('passphrase', 'your passphrase')
    .enable('sandbox')