I need to access data directly with yahoo’s api so I need the access token but the only information when I pass
const { user } = useAuth0();
All i get is this below
{
"nickname": "MATTHEW",
"name": "MATTHEW",
"picture": "https://ct.yimg.com/cy/myurl.jpg",
"updated_at": "2019-09-20T14:40:42.111Z",
"sub": "yahoo|<userid>"
}
how do I access the access tokens that auth0 used to sign in with?
Thanks in advance!