2

我正在关注这些教程: http ://rogerstringer.com/2016/02/04/parse-server-heroku/ https://devcenter.heroku.com/articles/deploying-a-parse-server-to-heroku

我正在尝试将 ParseServer 部署到 Heroku 并将我的应用程序与它连接起来。部署部分进展顺利,我可以看到这个:“我梦想成为一个网站。”

我不知道把clientId和appId放在哪里。这些是我在 Heroku 部分的配置变量:

Heroku 配置变量

这是我在 github 上的 ParseServer 中的代码:

var api = new ParseServer({
    databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
    cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
    appId: process.env.APP_ID || 'reciparia',
    masterKey: process.env.MASTER_KEY || '' //Add your master key here. Keep it secret!
});

AppDelegate 中的代码:

   let parseConfiguration = ParseClientConfiguration(block: { (ParseMutableClientConfiguration) -> Void in
  ParseMutableClientConfiguration.applicationId = "reciparia"
  ParseMutableClientConfiguration.clientKey = "CLIENT_KEY"
  ParseMutableClientConfiguration.server = "https://amazing-parse.herokuapp.com/parse"
})

由于必须有一个 clientKey on ParseClientConfiguration,我应该在 ParseServer 上有一个。

我应该把它放在哪里?在 Heroku UI 的 Config Vars 或 ParseServer 的 index.js 上?

4

1 回答 1

1

同样clientKey需要在ParseServer(位于index.js)和 AppDelegate.swift(在客户端)上。

我从 ParseServer添加clientKey到。index.js变量appId也需要在两边找到:

var api = new ParseServer({
  databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
  cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
  appId: process.env.APP_ID || 'reciparia',
  masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
  clientKey: process.env.CLIENT_KEY || 'holla'
});

AppDelegate.swift,保持不变:

  let parseConfiguration = ParseClientConfiguration(block: {   (ParseMutableClientConfiguration) -> Void in
     ParseMutableClientConfiguration.applicationId = "reciparia"
     ParseMutableClientConfiguration.clientKey = "holla"
     ParseMutableClientConfiguration.server = "https://amazing-parse.herokuapp.com/parse"
  })

我还稍微修改了配置变量,因为这里也有相同的 CLIENT_KEY 和 APP_ID。我发现现在只修改配置变量和 AppDelegate 更方便,因为我的凭据现在是公开的 :)。

配置

于 2016-02-22T09:45:40.763 回答