Auth0 login and logout profiles are not working. react typescript
<p>I have a question about Auth0. Log in. and logout. Using react typescript. </p>
<p>This is in Index.tsx. </p>
<pre class="brush:php;toolbar:false;">root.render(
<Auth0Provider
domain="somecode.us.auth0.com"
clientId="somecode"
authorizationParams={{
redirect_uri: window.location.origin
}}
>
<React.StrictMode>
<Provider store={store}>
<CssBaseline />
<App />
</Provider>
</React.StrictMode>
</Auth0Provider>
);</pre>
<p>Some code is given in Authentication Configuration. </p>
<p>Now I have a login or logout button. </p>
<pre class="brush:php;toolbar:false;">const AuthButton = () => {
const { isAuthenticated, loginWithRedirect, logout } = useAuth0();
const handleLogin = () => {
loginWithRedirect();
};
const handleLogout = () => {
logout({ logoutParams: { returnTo: window.location.origin } });
};
return (
<button
style={{
color: 'white',
backgroundColor: '#142952',
marginRight: '4rem',
fontFamily: 'Consolas',
border: 'none',
borderRadius: '3px',
width: '110px',
height: '40px'
}}
onClick={isAuthenticated ? handleLogout : handleLogin}
>
{isAuthenticated ? 'Logout' : 'Login'}
</button>
);
};
export default AuthButton;</pre>
<p>Also. I retrieve user information to display. </p>
<pre class="brush:php;toolbar:false;">const Profile = () => {
const { user, isAuthenticated, getAccessTokenSilently } = useAuth0();
const [accessToken, setAccessToken] = useState('');
useEffect(() => {
const getAccessToken = async () => {
try {
const token = await getAccessTokenSilently();
setAccessToken(token);
} catch (error) {
console.error(error);
}
};
if (isAuthenticated) {
getAccessToken();
console.log("authenticated")
}
}, [isAuthenticated, getAccessTokenSilently]);
if (!isAuthenticated) {
return <div>Please login to view your profile.</div>;
}
return (
<div>
{user?.picture && (
<img src={user.picture} alt="Profile Picture" />
)}
<h2>Hello {user?.name}</h2>
<p>Email: {user?.email}</p>
<p>Login Method: {user?.sub?.split('|')[0]}</p>
<p>Access Token: {accessToken}</p>
</div>
);
};
export default Profile;</pre>
<h1><strong>Here's my problem</strong>: After I log in with the Auth0 protocol, the <strong>Login Logout button doesn't change</strong>. First. It opens and goes to the auth0 dialog. However. After logging in with my Google account. Then the button still says "Login". <strong>This means it will never log in</strong>. I really don't know what to do. Here are the auth0 configuration settings I have. </h1>
<p>It has been explained above</p>