Parse-Server cloud code can't create Role

烂漫一生 提交于 2019-12-13 07:37:34

问题


I have a class called Project for which I create a Parse.Role for read/write permissions.

Here's how I create my Role:

var roleName = "hasSound_" + ident;
var projectRole = new Parse.Role(roleName, new Parse.ACL());
projectRole.getUsers().add(creator); 

return projectRole.save().then(function(role) {

var acl = new Parse.ACL();
acl.setReadAccess(role, true); //give read access to Role
acl.setWriteAccess(role, true); //give write access to Role

project.setACL(acl);            
project.save();

});

And here's the bad request I'm getting when trying to create the Parse.Role:

Mar 04 14:39:32 ancient-lake-41070 heroku/router:  at=info method=POST path="/parse/classes/_Role" host=ancient-lake-41070.herokuapp.com request_id=82af3849-842a-406f-8a4b-5f573e08a1e1 fwd="54.145.36.110" dyno=web.1 connect=0ms service=6ms status=400 bytes=578

回答1:


So apparently I needed to add useMasterKey to all my save functions. In a .save() function it is the second parameter, like so: obj.save(null, {useMasterKey: true})

Once I did that, the Role was created, all my relations are working again, etc.

See here for more info: https://github.com/ParsePlatform/parse-server/issues/37



来源:https://stackoverflow.com/questions/35807847/parse-server-cloud-code-cant-create-role

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!