My code which has been working well for more than a year started failing since yesterday.
I am trying to generate historical metrics for a keyword plan.
here is my code:
keyword_plan = self.create_keyword_plan()
....
keyword_plan_service = self.client.get_service("KeywordPlanService")
response = keyword_plan_service.generate_historical_metrics(
keyword_plan=keyword_plan)
when the line above being executed, I get the following error:
Function 'generate_historical_metrics' failed with error: 'KeywordPlanServiceClient' object has no attribute 'generate_historical_metrics'
Nothing has changed in our code
I tried v14 and v15 and both has the same issue.
We are using python library version 23.0.0 of google-ads
Has anyone else faced this isse? appreciate if someone help me on this?