NHero
when i use google login im not getting any secret/session anything to my success url that is http://localhost:3000/home The session is getting created i can see it in project -> auth -> user -> session in the appwrite cloud Code:
TypeScript
await account.createOAuth2Session(
OAuthProvider.Google,
"http://localhost:3000/home",
"http://localhost:300/login",
)
TL;DR
Developers are having trouble with Google login as the secret/session data is not being received in the success URL. The issue may be related to the code snippet provided for creating an OAuth2 session. Make sure to check the implementation for any potential errors or missing configurations in the code snippet. Recommended threads
- Need help with createExecution function
Hi, Need some help understanding createExecution. When requesting function execution via createExecution, the function handler arguments are incorrect and rese...
- Query Appwrite
Hello, I have a question regarding Queries in Appwrite. If I have a string "YYYY-MM", how can I query the $createdAt column to match this filter?
- Need Help with Google OAuth2 in Expo usi...
I'm learning React Native with Expo and trying to set up Google OAuth2 with Appwrite. I couldn't find any good docs or tutorials for this and my own attempt did...