remember me - What's the best way to save user login and password in flex? -


What is the best way to save user credentials in Flex? Local storage does not find a good place to store confidential data, because it saves information as plain text.

You must not use a browser cookie or session token to identify the user on the server For:

  1. Enters the username and password in a form in Flex and clicks the login.
  2. The server validates the credentials then adds a random (and sufficiently secure) token to the server in memory or in a database in the database. Then the server returns the token to the client.
  3. The client either saves in cookies, Tokyo, local lion objects, or just in memory. The subsequent requests include tokens.

Comments

Popular posts from this blog

paypal - How to know the URL referrer in PHP? -

oauth - Facebook OAuth2 Logout does not remove fb_ cookie -

wpf - Line breaks and indenting for the XAML of a saved FlowDocument? -