googleads / googleads-python-lib

The Python client library for Google's Ads APIs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable constructing GoogleServiceAccountClient with Credentials.from_service_account_info method

attilatoth86 opened this issue · comments

When initializing a GoogleServiceAccountClient, it expects Service Account JSON key file but there is no way to pass in the key file content as dictionary (e.g. after reading out from a secret store) because the constructor is limited to use the google.oauth2.service_account.Credentials.from_service_account_file()class method. Can this constructor be extended with .from_service_account_info() method, too?

https://google-auth.readthedocs.io/en/master/reference/google.oauth2.service_account.html#google.oauth2.service_account.Credentials.from_service_account_info

Thanks for the suggestion! In the meantime, you can use any google.oauth2 Credentials object with this library
https://github.com/googleads/googleads-python-lib/blob/main/googleads/oauth2.py#L215