我需要实现服务器端代码,以便将通知推送到iOS应用。我跟着this link。
问题是我总是得到'凭据不足'的消息。我正在使用apnagent
节点模块。
有没有人尝试过这个?我应该做些什么来设置我的凭据?
提前致谢。
答案 0 :(得分:3)
是的,我刚开始跑步。假设您正确设置了证书和应用程序,我可以使用以下任一方法:
那是:
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')