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

时间:2019-05-02 13:09:55

标签: ios parse-platform parse-server

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

我正在附上对我可见的屏幕截图。 enter image description here enter image description here

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

1 个答案:

答案 0 :(得分:3)

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

它指出“初始化Parse Server时,您应该传递一个附加的推送配置”,如下所示...

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实现推送通知的更多详细信息,例如其他配置选项。