Is it feasible to programmatically create a User on Parse server without the need for sign up? More information can be found at https://github.com/parse-community/parse-server
We attempted this using cloud code.
var user = Parse.User();
user.setUsername("admin", null);
user.setPassword("password", null);
user.save();
Although it successfully creates a User in the Parse database, we encounter an 'unauthorised' error when attempting to login. Our ParseServer configuration does not require email verification.
This functionality is intended for an admin console in which customers will be able to log in with the username -> admin and password -> password. Once logged in, users can then modify their credentials within the application.