gpt4 book ai didi

javascript - 如何将 aps.cer 文件用于 Node.js 的 APN(推送通知)?

转载 作者:行者123 更新时间:2023-11-29 11:37:53 25 4
gpt4 key购买 nike

我在 node.js 发送推送通知时遇到问题,我想是因为我在我的苹果开发者帐户中生成的 APN 证书做错了。我从 Node.js 收到此错误。

VError: Failed to generate token: error:0906D06C:PEM routines:PEM_read_bio:no start line

我不确定我是否在 Apple 开发者帐户中生成了正确的文件。请参阅下面的屏幕截图,当我单击下载时,这会给我一个“aps.cer”文件,这是我放入我的 node.js 项目并与 node-app 模块一起使用的文件。以下是我如何在我的代码中设置它:

let options = {
token: {
key: "aps.cer",
keyId: "singlemeout.Single-Me-Out",
teamId: "Team Name"
},
production: false
};

这是我的证书的屏幕截图。

enter image description here

最佳答案

当您使用证书时,您正在为 node-apn 提供基于 token 的配置。

如果您想继续使用证书:

  • 证书应为 PEM 格式。

    您可以像这样进行转换:

    openssl x509 -inform DER -in aps.cer -out certificate.pem
  • 您需要提供 key ,可以将其添加到证书中,也可以将其作为单独的文件提供

  • 您需要在配置对象中使用 certkey 和/或 pfx 属性,而不是 token。键

    let options = {
    cert: "certificate.pem",
    key: "privatekey.pem"
    };

或者,您可以切换到使用 token 。

参见 https://github.com/node-apn/node-apn/blob/master/doc/provider.markdown了解全部详情。

此外,您的production 属性与使用的证书不一致。

关于javascript - 如何将 aps.cer 文件用于 Node.js 的 APN(推送通知)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48080181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com