google search console, search analytics, get more data
问题 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