
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
- Permission issue on the server
I'm setting document permissions on the server when creating a document using Appwrite. I’m using Permission.read(Role.user(userId)) to allow a specific user ac...
- Database Migration/Sync Between Two Proj...
The multiple attempts I've tried to migrate data from one project to another have failed. Does Appwrite not support migration (sync) between two projects in an...
- Nameservers for Canada
Are Appwrite’s nameservers (ns1.appwrite.zone, ns2.appwrite.zone) registered for use with .ca domains? I’m trying to point a .ca domain to Appwrite, but it’s be...
