I am trying to set oauth for google using appwrite for my next.js application. After clicking on the signIn with google button ..it is directly rdirecting to the required home page ..without even showing the pop up window to choose the account and login accordingly. Infact after redirecting ..it is automatically showin a user in the auth section in appwrite console. Hereis how i have initialized my appwrite project for oauth
it shouldn't be a popup. when you are trying to create an oauth2 session, appwrite client sdk should redirect your user to google oauth2 page, then return him back to your app (by URL provided in success param)
Understood ..but it not redirecting to google oauth2 page
it is directly rediecting to home page url ...without asking to select account for loggiing in and all
Recommended threads
- self-hosted auth: /v1/account 404 on saf...
Project created in React/Next.js, Appwrite version 1.6.0. Authentication works in all browsers except Safari (ios), where an attempt to connect to {endpoint}/v1...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...