
I'm an issue while trying to log a user in with the fonction account.createEmailPasswordSession I get this message when sending good email and password : Cookie “a_session_{projectID}” rejected because it has the “SameSite=None” attribute but is missing the “secure” attribute.
`const login = async (email, password) => { const session = await account.createEmailPasswordSession(email, password); console.log(session);
const reqUser = await account.get()
setLoggedInUser(reqUser);
};`
Can someone have a idea on how to fix the issue i'm facing ? Thanks

I thinks its a misconfiguration of my self-hosted appwrite, tested with cloud hosting and no problem. What do i need to make it work ?
Recommended threads
- API Endpoint to Verify Password.
I have 2 use cases where i need to verify a users password outside of login, e.g. Updating user account data (such as name, or prefs, or data in a users databa...
- search collection by document ID
How to filter or search collection for a document using document ID, I can't find this item on the filter menu
- Database Migration/Sync Between Two Proj...
Overall The migration failed mainly due to conflicts with existing data (documents, attributes, collections, etc.), exceeding attribute limits, and unsupported ...
