Reputation: 3348
I'm developing a client as a UWP. I can handle the oauth login without problems but I'm not really sure where should i save the oauth access_token for the users. Is the ApplicationData.LocalSettings a secure place to store this type of information?
Upvotes: 8
Views: 5769
Reputation: 21909
The Windows Runtime provides the PasswordVault class to securely store credentials.
Upvotes: 7