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

Sending data from utility file to a component (React + Vite)

I've got a file called LoginPage.jsx which calls a function in a utility file called AuthContext.jsx, the utility file handles the request to the backend server to authenticate a user. If no user is found or any other error is returned, how do I…
larkx
  • 71
  • 1
  • 9
0
votes
1 answer

No json data shown in Appwrite function logs

I created a function with php to create a new user in Appwrite. After the execution these are the outputs: Response: Missing required user data. Logs: No logs recorded Errors: No errors recorded
harlindis
  • 1
  • 1
0
votes
1 answer

Android Intent-Filter for https Appwrite Cloud

My app didn't open Activity when I open link from appwrite cloud. Google Chrome open this link and I don't know why. Maybe trouble in android:pathPattern? Why it's don't be able to open Link? Link example:…
retr12
  • 1
  • 2
0
votes
1 answer

AppwriteException: User (role: guest) missing scope (account), not able to get account after creating a session

Throwing error on line account.get() Stuck on this from past 3 days can anyone help me please Register account controller code : const User = require('../model/User'); const { Client, Account } = require('appwrite'); exports.register = async (req,…
0
votes
1 answer

Cannot filter data in dataprovider and appwrite

I'm facing an issue with filtering data in my Flutter app using the Provider package. I have a list of items that I want to filter based on a selected category. However, the filtering doesn't seem to work as expected. Here's the relevant code…
Maenda
  • 41
  • 1
  • 7
0
votes
1 answer

"Failed host look up: 'hostname' " appWrite on Android device in Flutter

Consider: static const String endPoint = 'http://192.168.18.22:8001/v1'; Here is my configuration for my endPoint project. "192.168.18.22:8001" is my IP address in my Android device:
LeThanhDat
  • 19
  • 6
0
votes
1 answer

How to update password of logged in user of AppWrite through Kotlin?

I'm trying to use the Appwrite SDK for Android to update a user's password in my Kotlin app. I'm using the following code, but the update doesn't seem to be happening: binding.updatePasswordBtn.setOnClickListener { …
Harsh Panchal
  • 146
  • 1
  • 1
  • 6
0
votes
1 answer

make multiple selection query to appwrite with graphql from web sdk

I have a list of documents, with field_1, field_2, ... Using graphql from the web skd (on localhost), i want to perform two requests 1.get all documents as field_1 = "a" AND field_2 = "b" 2.get all documents as field_1 = "a" OR field_2 =…
0
votes
0 answers

Cannot read property 'AppwriteProvider' of undefined

While running the program I'm getting the error of Cannot read property 'AppwriteProvider' of undefined Appwrite Service.ts import {Account, ID, Client} from 'appwrite'; import Config from 'react-native-config'; import Snackbar from…
Harsh Gupta
  • 548
  • 1
  • 4
  • 10
0
votes
2 answers

500 (Internal Server Error) when using await on async function

I use appwrite to store my images and I get them via a function that I export from 'appwrite.ts'. Then I use Svelte to display the image using the requested brand and name by calling it from the Svelte file, but when the website sees the await, it…
0
votes
0 answers

how i can pass a xlsx file coming from appwrite storage to reader.arraybuffer

const [ExcelData,setExcelData]=useState({}) const {id}=useParams() useEffect(() => { const fetchFile = async () => { const response = await getFileFromAppWrite(id) console.log('lioa', response) …
0
votes
1 answer

Swift Combine set up return flow of data from function

So I'm using Appwrite as a backend for my application. In my repository, I want to create a function along the lines of func listenToAltersForUser(userId: String) -> PassthroughSubject(?) { subscription = appwriteClient.realtime(....) { event…
Cate Daniel
  • 724
  • 2
  • 14
  • 30
0
votes
0 answers

How to show featured image like netflix using flutter and appwrite

I am going to develop a video streaming app like Netflix using flutter and Appwrite. I want to add a featured movie image inside home screen like bellow image. I have saved this image in appwritre storage bucket and save image url inside…
sameera
  • 23
  • 5
0
votes
1 answer

How do i upgrade cloud.appwrite.io to the latest version...?

I'am using Appwrite for a long time now, but I recently got to know about the 'relationship' feature in the database. So i wanted to try it in my flutter app but I'm currently using appwrite's cloud version for my app, is there any way I can upgrade…
0
votes
0 answers

real-time issue in Flutter and Appwrite

When I call the subscription command "_realtime.subscribe" in file "lib/apis/tweet_api.dart", line 68, so that the screen "lib/features/tweet/widgets/tweet_list.dart" is in realtime, it works fine, then when I call the same subscription command in…
1 2 3
8 9