我可以在哪里上传 .p12 文件或 Parse Server 上的推送通知密钥?

Where can I upload the .p12 file or Push notification key on Parse Server?

我正在开发一个使用 Parse 作为后端的应用程序。我正在使用 Parse 实现推送通知。我已经在应用程序端完成了所有配置。 但是我无法在 Parse 服务器上找到任何 space 来上传 .p12 文件或推送通知密钥。

我附上了我可以看到的截图。

我已经检查了所有可能的上传推送证书的选项。但不幸的是我没有找到。

请查看 Parse Server 指南中的 push notifications quick start 部分。

表示'when initialising Parse Server, you should pass an additional push configuration'如下图...

var server = new ParseServer({
  databaseURI: '...',
  cloud: '...',
  appId: '...',
  masterKey: '...',
  push: {
    android: {
      apiKey: '...'
    },
    ios: {
      pfx: '/file/path/to/XXX.p12',
      passphrase: '', // optional password to your p12/PFX
      bundleId: '',
      production: false
    }
  }
});

查看上述文档中的部分,了解有关使用 Parse Server 实现推送通知的更多详细信息,例如其他配置选项。