I have an application that extracs data from google spreadsheet (embedded via iframe) to update a model of a single page app written in Angular + ruby in the backend.
I want to update the Angular model whenever the data in the spreadsheet changes.
Is there any way to know if the data in the spreadsheet has changed to update the Angular model without just checking every few seconds? Something like a OnDataChange event?
Thanks in advance?