-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathApp.svelte
48 lines (44 loc) · 1.52 KB
/
App.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<script>
import {
Auth0Context,
Auth0LoginButton,
Auth0LogoutButton,
authError,
authToken,
idToken,
isAuthenticated,
isLoading,
userInfo,
} from './components/components.module.js';
</script>
<div class="container">
<Auth0Context
domain="dev-hvw40i79.auth0.com"
client_id="aOijZt2ug6Ovgzp0HXdF23B6zxwA6PaP"
audience="process.env.AUTH0_AUDIENCE"
callback_url="process.env.AUTH0_DEFAULT_CALLBACK_URL"
logout_url="process.env.AUTH0_DEFAULT_CALLBACK_URL"
>
<Auth0LoginButton class="btn">Login</Auth0LoginButton>
<Auth0LogoutButton class="btn">Logout</Auth0LogoutButton>
<table>
<thead>
<tr><th>store</th><th>value</th></tr>
</thead>
<tbody>
<tr><td>isLoading</td><td>{$isLoading}</td></tr>
<tr><td>isAuthenticated</td><td>{$isAuthenticated}</td></tr>
<tr><td>authToken</td><td>{$authToken}</td></tr>
<tr><td>idToken</td><td>{$idToken}</td></tr>
<tr><td>userInfo</td><td><pre>{JSON.stringify($userInfo, null, 2)}</pre></td></tr>
<tr><td>authError</td><td>{$authError}</td></tr>
</tbody>
</table>
</Auth0Context>
<p>If social login is not persisting across page reloads, you are most likely using Universal Login classic with Auth0
Dev keys for the social provider. There are two ways to resolve the issue:</p>
<ol>
<li><a href="https://auth0.com/docs/universal-login/new">Switch to the New Universal Login Experience</a></li>
<li><a href="https://auth0.com/docs/connections/social/google">Use your own keys for the Social connection</a></li>
</ol>
</div>