Questions tagged [appwrite]

Secure Open-Source Backend Server for Web, Mobile & Flutter Developers Appwrite is a self-hosted backend-as-a-service platform that provides developers with all the core APIs required to build any application. https://appwrite.io/

Secure Open-Source Backend Server for Web, Mobile & Flutter Developers Appwrite is a self-hosted backend-as-a-service platform that provides developers with all the core APIs required to build any application. https://appwrite.io/

130 questions
0
votes
1 answer

Qwik JS error - Only primitive and object literals can be serialized

I have a signin page which is built upon Qwik & appwrite. There is a piece of code where I'm trying to get the current user's session details & If I get the session details then I'm redirecting the user to the "dashboard" page. Below is the code…
Suresh
  • 5,687
  • 12
  • 51
  • 80
0
votes
0 answers

How do I add google sign in on Appwrite without client id

I am building an application that requires log in and sign up. I am using Appwrite for backend and want a "sign in with google" button in it. I went to the google developer console and created a project, added credentials and everything. It provided…
UwUly
  • 51
  • 3
0
votes
0 answers

Appwrite PHP SDK Document Permissions: Setting Read and Write Access

I want users to have specific permissions for documents in a collection: All users should be able to read documents. The document owner should be able to create, update, and delete their own documents. I've tried setting up the permissions using the…
harlindis
  • 1
  • 1
0
votes
1 answer

appwrite error User (role: guests) missing scope (account)

I've created an "Email Session" & store the session id, which I get in return. Then when again I use the same session id with the following "getSession()" method, I get the below error. const promise =…
Suresh
  • 5,687
  • 12
  • 51
  • 80
0
votes
0 answers

Appwrite cloud function - user id mismatch issue

This is a php appwrite function code to delete a document. I compared the owner of the document with the user id. If they are the same, the user has permission to delete it, otherwise not. After I execute it, even thought the user id equals with the…
harlindis
  • 1
  • 1
0
votes
0 answers

Appwrite Local Setup - Exceeding User Limit Despite Unlimited Setting in Dashboard

I have set up Appwrite locally for my Flutter app project and encountered an issue despite configuring my user limit as unlimited in the Appwrite dashboard panel. Whenever I attempt to perform user-related actions, such as user registration or…
Behnam
  • 329
  • 5
  • 15
0
votes
0 answers

Appwrite Authentication Issues

I am using Appwrite to build a client side website (an e-commerce online store). There is a database made in appwrite which has the admin users as well as the customers collections. Now whenever I load the page without being logged in I get the…
0
votes
2 answers

Flutter Web and Appwrite CORS problem after published to my web-server

I have a problem after I have built and published my Flutter Web App. My app is working perfectly when running it from the IDE , Android Studio, with Google chrom in Localhost:somePort. What I have done: Published my app to my web server and it is…
Yahalom Software
  • 616
  • 4
  • 15
0
votes
0 answers

Appwrite flutter create email session invalid user credentials

i am new to appwrite , i found something strange. i've created user from the admin console of appwrite , when I try to create an email session (login) from client flutter app , the response returned 401 invalid credentials, i am sure of every…
Gerges Izak
  • 3
  • 1
  • 2
0
votes
0 answers

npm ERR! code EBADENGINE - this error out of nowhere on my sveletkit project

So there is a web project that I started some months ago with Sveltekit. I shelved it for a bit and today I needed to try and connect the svelte app to an appwrite backend. As I am trying to install the appwrite SDK, I get this error. Please…
0
votes
0 answers

AppwriteRealtime: Allow self-signed certificate , subscription: null

I had a problem with Real Time messages in Appwrite with Flutter, the subcription was null, but I think all setups were true because I have used a likewise code for another part of my project here is my code: @override Widget build(BuildContext…
LeThanhDat
  • 19
  • 6
0
votes
1 answer

Problems with Creating a Document in a Specific Collection with Appwrite Function

I am facing an issue while trying to create a new document in Appwrite using a PHP function. The Appwrite function is supposed to receive a payload containing necessary data for the document creation, including the "title" and "owner" fields.…
harlindis
  • 1
  • 1
0
votes
2 answers

Not able to import appwrite while making flutter app

appwrite is added in my dependency still i am not able to import 'package:appwrite/appwrite/models.dart'; I am getting this Target of URI doesn't exist: 'package:appwrite/appwrite/models.dart'. Try creating the file referenced by the URI, or try…
0
votes
0 answers

Troubleshooting Appwrite PHP Function: Document Deletion Issue

I have implemented a PHP function in an Appwrite project with the goal of deleting a document. However, the function is not working as expected, and I need assistance in troubleshooting the issue. The function is designed to receive a document ID as…
harlindis
  • 1
  • 1
0
votes
1 answer

Updating an item within an array and maintain its index

I'm trying to update my state with new information that is passed through response.payload. This is my current code: if(response.events.includes('databases.*.collections.*.documents.*.update')) { setMemos(prevState => prevState.filter(memo =>…
larkx
  • 71
  • 1
  • 9
1 2
3
8 9