We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to login with Google on Expo Go. Set AUTH_REDIRECT_PROXY_URL env to https://proxy.vercel.app/r both in my proxy sever and on local.
AUTH_REDIRECT_PROXY_URL
https://proxy.vercel.app/r
Here is my proxy config
export default eventHandler(async (event) => Auth(toWebRequest(event), { basePath: "/r", secret: process.env.AUTH_SECRET, trustHost: !!process.env.VERCEL, redirectProxyUrl: process.env.AUTH_REDIRECT_PROXY_URL, providers: [ Google({ clientId: process.env.AUTH_GOOGLE_ID, clientSecret: process.env.AUTH_GOOGLE_SECRET, }), GitHub({ clientId: process.env.AUTH_GITHUB_ID, clientSecret: process.env.AUTH_GITHUB_SECRET, }), Resend({ apiKey: process.env.AUTH_RESEND_KEY, from: process.env.AUTH_EMAIL_FROM, }), ], }), );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to login with Google on Expo Go. Set
AUTH_REDIRECT_PROXY_URL
env tohttps://proxy.vercel.app/r
both in my proxy sever and on local.Here is my proxy config
The text was updated successfully, but these errors were encountered: