Validating User Login¶
Description¶
The login operation provides a way to persist the user-token
on the client side so it can be used when the application is restarted. This helps in streamlining the user experience since the user of the application does not need to login again. However, when the application restarts, it needs to check if the underlying user token, and hence the user session is still valid. This can be accomplished with the API below:
Method¶
Non-Blocking API
public void Backendless.UserService.IsValidLogin( AsyncCallback<Boolean> callback );
Blocking API
public bool Backendless.UserService.IsValidLogin()
If the login (user token) is valid, objectId
of the logged in user can be retrieved with the following call. The method returns null
if login has not been previously persisted:
string loggedInUserObjectId = Backendless.UserService.LoggedInUserObjectId();
Subsequently the BackendessUser
instance can be obtained with the following API:
Non-blocking call:
Backendless.Data.Of<BackendlessUser>().FindById(
loggedInUserObjectId,
AsyncCallback<BackendlessUser> callback )
Blocking call:
Backendless.Data.Of<BackendlessUser>).FindById( loggedInUserObjectId )
Return Value¶
true
if the current user session(user token) is valid. Otherwise, returns false
.
Example¶
To validate the user session, the user must be logged in first, make sure to set the stayLoggedIn
argument to true
to persist the information about the login for the use by subsequent starts/sessions of the application. For more information refer to the Login topic.
The example below checks if the current session is valid.
Blocking API
Boolean isValidLogin = Backendless.UserService.IsValidLogin();
System.Console.WriteLine( "Is login valid? - " + isValidLogin );
Non-Blocking API
AsyncCallback<Boolean> callback = new AsyncCallback<Boolean>(
isValidLogin =>
{
System.Console.WriteLine( "Is login valid? - " + isValidLogin );
},
fault =>
{
System.Console.WriteLine( fault.ToString() );
} );
Backendless.UserService.IsValidLogin( callback );
Codeless Reference¶
Returns true
if the current user session(user token) is valid. Otherwise, returns false
.
Consider the following record in the Users
data table:
The example below logs in as "alice@yourmail.com"
. The stay logged in
parameter must be set to true
to establish a persistent session. Then the session is validated by using the Is Valid User Session
Codeless block.