Login flow
Hi, implementation question!
I have the client logging correctly and authenticating fine, but i'm not sure of how to manage the session. I can see that a token is returned during the login process, but i don't know what to do with it.
Is there any inbuilt token management, or do i need to store the token between sessions and refresh it when needed? How do i pass the token back to the application on launch?
Thanks
Gareth
Currently session management is not implemented. Definitely needed though!
If you store a session token you can call the login method with parameters {'resume': yourToken}
You would have to do this yourself, e.g. store it in localStorage like Meteor does.