How can write data firebase use web Api

I see on link https://firebase.google.com/docs/reference/rest/database/
have methob write data is
curl -X PUT -d ‘{ “first”: “Jack”, “last”: “Sparrow” }’
‘https://[PROJECT_ID].firebaseio.com/users/jack/name.json’
How can use on web Api in Thunkable x

Thanks

To work with the Web API in thunkable X, the WEB API component is used. Have you tried to get data through it?

First, try to get the data from the link https://[PROJECT_ID].firebaseio.com/users/jack/name.json

1 Like

I would suggest using the Realtime DB component if you want to read or write to a Firebase DB. It’s easier than using the web api. See https://docs.thunkable.com/thunkable-cross-platform/create/components/data/realtime-db for more info.

-Mark

1 Like

Thanks Mark

(mark it as solution to your problem if it helped)