sharing users between Apps

I created an App in Backendless console and this App needs to access of other App users to authentication and authorization. Is it Possible?

Can I have one user management for all my Apps?

Hi, Mohammad!

Backendless is not designed to have single user management for all your Apps - every app has it’s own database. But if you really need to access user database from different Backendless apps you can do the following workaround - when you need to access the users from second app you first call Backendless.initApp() with credentials of the second app and after your are done with it you call Backendless.initApp() with credentials of the first app, so you are back where your were:

public void methodThatUsesDatabaseOfTheSecondApp() {
Backendless.initApp("APP-ID-OF-THE-SECOND-APP", "SECRET-KEY-OF-THE-SECOND-APP", "VERSION");


// Do the job you need


// switch back to the first app database:
Backendless.initApp("APP-ID-OF-THE-FIRST-APP", "SECRET-KEY-OF-THE-FIRST-APP", "VERSION");


}