我正在设置一个解析服务器实例,以便多个用户可以使用单独的应用程序进行单独登录,就像当前提供的解析一样。 Parse是否提供了这个的开源实现?
答案 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"}]
}
]
}