auth0 / auth0-flutter

Auth0 SDK for Flutter
https://pub.dev/documentation/auth0_flutter/latest/
Apache License 2.0
57 stars 36 forks source link

Possibility to manually store credentials on web #436

Open egonm12 opened 2 months ago

egonm12 commented 2 months ago

Checklist

Describe the problem you'd like to have solved

For mobile, it is possible to store credentials manually:

await _auth0.credentialsManager.storeCredentials(credentials);

For web there is no similar option. Is there a way we can do this using the auth0-spa-js SDK or perhaps using the auth0.js SDK?

Describe the ideal solution

A similar implementation for web

await _auth0Web.storeCredentials(credentials);

Alternatives and current workarounds

No response

Additional context

No response