In my web application, i want to store the auth data after logging in from google and facebook into my own mongodb database
You can’t directly connect your own MongoDB with Appwrite.
But You can use functions to communicate and store the data into your MongoDB.
could you provide some examples?
You can learn about functions here https://appwrite.io/docs/products/functions
Do you have REST API to communicate with your MongoDB?
Recommended threads
- 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...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...