One tap: Google One Tap is only available in browser environments

I use the google one tap api in my NextJS app still i get this error and the One tap doesn't pop up
Google One Tap is only available in browser environments
Google One Tap is only available in browser environments
const UserButton = async () => {
await authClient.oneTap();

return (
// Things
);
};

export default UserButton;
const UserButton = async () => {
await authClient.oneTap();

return (
// Things
);
};

export default UserButton;
6 Replies
bayrem🪽
bayrem🪽OP3w ago
Still didn't find solution, please help ❤️
Vimes
Vimes3w ago
are you running this on the client or the server? Ie does the code where you run this have "'use client" on the to of it?
bayrem🪽
bayrem🪽OP3w ago
no i don't have use client its a server component and even if i go client side its not working
Vimes
Vimes3w ago
"Google One Tap is only available in browser environments" A server component does not run in a browser environment, it runs on the server. The browser just sees the results after it has run. I think you have to run this using "use client", remember that you can use "use client" on small (or large) parts of server pages / server components. But you can not use "use server" inside of a client component.
bayrem🪽
bayrem🪽OP3w ago
im getting this now
[GSI_LOGGER]: The given origin is not allowed for the given client ID.
[GSI_LOGGER]: The given origin is not allowed for the given client ID.
bayrem🪽
bayrem🪽OP3w ago
altho i have localhost added here, the OAuth works perfect but why not the oneTap
No description

Did you find this page helpful?