How to update "New" data from firebase using Google App Script As Server-Side
How to update "New" data from firebase using Google App Script As Server-Side
matcha125
Posts: 6Questions: 3Answers: 0
Hello , Everyone. l have been working on Google Web App and quite new in programming
Now I can Get data and draw datatable by retrieve data from firebase using google app script
and when I add new child ,I just retrieve whole JSON and redraw datatable again
but I believe it will has a better way to do that ,by using POST and GET method .
so ,Do anyone can show me how to use POST and GET in datatable by using google app script ?
Thank you,
Answers
We don't have an example of exactly that I'm afraid, but to add new rows when you get a notification about them, use
row.add()
.Allan