How can I use Google Ads Api on Cloud Functions without specifying the credentials file?

100 Views Asked by At

I know that credentials are automatically provided to my Cloud Function through the default service account associated with my Google Cloud project. But it did not with work google ads api. I tried:

from google.ads.googleads.client import GoogleAdsClient
google_ads_client = GoogleAdsClient(version=google_ads_api_version)

But it throws: TypeError: GoogleAdsClient.__init__() missing 2 required positional arguments: 'credentials' and 'developer_token'

0

There are 0 best solutions below