Ask a Question
Questions around Authentication
Question #1 What is the difference between PlatformService.SaveToken() and AuthService.ApplyToken() ?
Question #2 At what point can I expect to have a valid User object ready when registering or signing in? I am calling RegisterDBCredentials() and getting a successful response but not sure what to do after that. should the User object be updated?
Question #3 Are email and username synonymous? the API is a little ambiguous:
Promise RegisterDBCredentials(string email, string password); Promise Login(string username, string password, bool mergeGamerTagToAccount = true, bool customerScoped=false);
Question #4 What is the difference between RegisterDBCredentials and RegisterCustomer?
Promise RegisterCustomer(string email, string password, string projectName, string customerName, string alias);