Last active
May 14, 2021 12:37
-
-
Save mlafeldt/3505b98399182a7afd2927fe86c583b0 to your computer and use it in GitHub Desktop.
Like useAuth but also returns the access token
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState, useEffect } from 'react' | |
import { useAuth0 } from '@auth0/auth0-react' | |
export const useAuth0WithToken = () => { | |
const auth0 = useAuth0() | |
const [token, setToken] = useState('') | |
const [error, setError] = useState() | |
useEffect(() => { | |
if (!auth0.isAuthenticated) return | |
auth0 | |
.getAccessTokenSilently() | |
.then((token: string) => setToken(token)) | |
.catch((err) => setError(err)) | |
}, [auth0]) | |
return { | |
...auth0, | |
isLoading: auth0.isLoading || (auth0.isAuthenticated && !token), | |
error: auth0.error || error, | |
token, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment