shadowfang098Original post
Web Developer
Trying to create a google OAuth for a nextjs app, the method call looks like this:
Plain text
account.createOAuth2Session("google", "http://localhost:3000/dashboard","http://localhost:3000") }}```and getting this error: `Argument of type '"google"' is not assignable to parameter of type 'OAuthProvider'`Summary
Developers are experiencing an issue with Google OAuth in a Next.js app. The error suggests a type mismatch in the method call. The solution is to check the version of the SDK being used and hosting details. The method call should be `account.createOAuth2Session(OAuthProvider.GOOGLE, "http://localhost:3000/dashboard", "http://localhost:3000")`.