hi
I read this interesting post
which partly answers one of my concerns, however if I want to know which user whose data is modified it is not possible?
hi
I read this interesting post
which partly answers one of my concerns, however if I want to know which user whose data is modified it is not possible?
I don’t think you can do that with Thunkable blocks but it looks like you can use the API for that:
https://firebase.google.com/docs/reference/rest/database/#section-streaming
I haven’t tried it but if it can send the path and data values, you’ll have what you need:
The server may send the following events:
put
The JSON-encoded data is an object with two keys: path and data. The path key points to a location relative to the request URL. The client should replace all of the data at that location in its cache with data.
patch
The JSON-encoded data is an object with two keys: path and data. The path key points to a location relative to the request URL. For each key in data, the client should replace the corresponding key in its cache with the data for that key in the message.
It is also worth reading this
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.