Hi!
I am having some trouble using the authtoken for session login. It works good to login with e-mail and password, I get the e-mail verification and have clicked that link as well. I stored the authtoken in a file which I load up and use it to log in:
local loginParams = {} loginParams.type = "session" loginParams.authToken = storyboard.state.authToken[2] cloud.login( loginParams )
but nothing happens. The authListener for cloud dosent even get called. Am I missing something here? I can register and login with mail and password, but nok with token. I save the token after logging in successfully with “loggedIn” using: cloud.authToken
Guess I can always just store the email and password instead, but just wondered if there was something I was missing so I could correct it.