Hello I have a problem with google ads api. For some reason search_stream return incomplete data if taken over a long period of time. Do you have a limit with 1020 rows for stream?
I'm using python client (google-ads-python).
The code example:
gads_client = GoogleAdsClient.load_from_dict(settings.GOOGLE_ADS_CREDENTIALS)
ga_service = gads_client.get_service("GoogleAdsService")
stream = ga_service.search_stream(customer_id=customer_id, query=query)
So in the results we have random set of 1020 raws if we take metrics for several months,
but if we request metrics for one day - we have full and fine set of metrics.
Is there any limit for search_stream ? (I found that only search has some limitations)