I'am trying to use google search console api to get some data out of my website. Below my code used to do that:à
service = build('webmasters', 'v3', http=http)
collection = service.searchanalytics()
request = {
'startDate': '2015-10-24',
'endDate': '2015-10-25',
'dimensions': ['query','page', 'device'],
'searchType': 'web',
'rowLimit': '5000'
}
response = collection.query(siteUrl=property_uri, body=request).execute()
My problem is that I'am only able to about 1000 row. I was wondering if there was a way to get all my website data. For example send another request to get the 1000 next row and so on. Right now, if I repeat the request I get the same response.
Thanks for your help