wispyco
KKinde
•Created by wispyco on 9/15/2024 in #💻┃support
Email undefined for apple id registration on dashboard page
When a user registers and is redirected to the dashboard page after signing up I am using the following code to get the user information.
import {getKindeServerSession} from "@kinde-oss/kinde-auth-nextjs/server";
export default async function Dashboard() {
const {getUser} = getKindeServerSession();
const user = await getUser();
console.log(user);
return (<div>Dashboard<pre>{JSON.stringify(user, null, 2)}</pre></div>);
}
In the console log on the server the email is undefined.
Why may this be?
42 replies
KKinde
•Created by wispyco on 9/9/2024 in #💻┃support
Machine Api Access Token granted once but not again
I am using NextJS, and I make a request like this below
And I get the correct access_token
I then eventually make a request to google and get a url for google drive auth I redirect to it and come back to my app with a session ID
I then in a different route run the same request as above to get a access_token again
so that I can get a token from google drive with the session ID
however I get the following error
Not sure why it didnt worked the second time and did the first. I was under the assumption that this machine api access token shouldnt be stored but called when needed.
5 replies