解析服务器多租户

时间:2016-03-23 19:09:38

标签: parse-platform

我正在设置一个解析服务器实例,以便多个用户可以使用单独的应用程序进行单独登录,就像当前提供的解析一样。 Parse是否提供了这个的开源实现?

1 个答案:

答案 0 :(得分:1)

使用解析仪表板:https://github.com/ParsePlatform/parse-dashboard

您可以定义配置文件以指向多个解析服务器,并使用app访问权限定义多个用户凭据,如下所示:

{
  "apps": [
    {
      "serverURL": "https://api.parse.com/1",
      "appId": "myAppId1",
      "masterKey": "myMasterKey",
      "javascriptKey": "myJavascriptKey",
      "restKey": "myRestKey",
      "appName": "My Parse.Com App",
      "production": true
    },
    {
      "serverURL": "http://localhost:1337/parse",
      "appId": "myAppId2",
      "masterKey": "myMasterKey",
      "appName": "My Parse Server App"
    }
  ],
  "users": [
     {
       "user":"user1",
       "pass":"pass1",
       "apps": [{"appId1": "myAppId1"}, {"appId2": "myAppId2"}]
     },
     {
       "user":"user2",
       "pass":"pass2",
       "apps": [{"appId1": "myAppId1"}]
     }  
  ]
}