Hey all,
So i was working on my login form (with works), now i can't remember anymore where i need to write the next method call to continue after the login response was positive to login. Can you give me hint?
myAPI.Login(request, (result) => {
// Store User specific data
Id = result.Id;
sessionTicket = result.SessionTicket;
},
(error) => {
Debug.Log("Error logging in the user:");
Debug.Log(error.ErrorMessage);
}
);
↧