A wrapper for Auth0 SPA SDK to use Auth0 in Flutter Web.
⚠ The latest is
0.0.1-alpha.6but not serve bypub.devby default.
dependencies:
auth0_flutter_web:Make Auth0 SPA SDK available for dart by adding it to index.html in web folder (besides ios and android)
<head>
<!-- other elements in head -->
<script src="https://cdn.auth0.com/js/auth0-spa-js/1.20/auth0-spa-js.production.js"></script>
<!-- other elements in head -->
</head>import 'package:auth0_flutter_web/auth0_flutter_web.dart';
Auth0 auth0 = await createAuth0Client(
Auth0CreateOptions(
domain: '-- domain of the universal login page --',
client_id: '-- id of your app --',
)
);
String token = await auth0.getTokenWithPopup();Complete source code of working example can be found in example folder under repository root