Starting the week of August 19, 2024, Google Ads API will enforce a change that removes the ability to set the page_size
field in GoogleAdsService.Search
requests. All requests will now assume a fixed page size of 10,000 rows.
Error Handling
- Version v16: Throws a
PAGE_SIZE_NOT_SUPPORTED
error ifpage_size
is set. - Versions v15 and older: Throw an
INVALID_PAGE_SIZE
error ifpage_size
is set.
This change, initially introduced in version v17, will now apply to all older API versions, ensuring consistency.
Required Changes
- Version v17 Users: No changes needed.
- Older Version Users: Update your application code to stop setting the
page_size
field inGoogleAdsService.Search
requests.