Paging on Google Places API returns status INVALID_REQUEST

It is documented, see the documentation By default, each Nearby Search or Text Search returns up to 20 establishment results per query; however, each search can return as many as 60 results, split across three pages. If your search will return more than 20, then the search response will include an additional value — next_page_token. … Read more

Partition: How to add a wait after every partition

Here is a RateLimiter class that you could use in order to limit the frequency of the asynchronous operations. It is a simpler implementation of the RateLimiter class that is found in this answer. /// <summary> /// Limits the number of workers that can access a resource, during the specified /// time span. /// </summary> … Read more