I\'m creating a channel that receive changes on users that are on my application. The main problem is that after 2-3 webhooks, I receive an error that says that user has exceede
There was an error in the code. I had to change the following:
PageToken = changes.getNewStartPageToken();
to
pageToken = changes.getNextPageToken();
The huge amount of queries was because I was requesting on every loop a new start page token, forcing an infinite loop.