I have a user signing google login and this produces AccessToken and a RefreshToken.
Currently the user enters his AdWords account id and together with AccessToken and RefreshToken, api calls are being made.
I need to changes this so that the user does not enter his AdWords account id, instead I expect to call ListAccessibleCustomers() using only the AccessToken and a RefreshToken and obtain the user's AdWords account id from the API response.
My problem is that I cant understand how to construct
GoogleAdsClient() object so that I can instantiate it with the given AccessToken and a RefreshToken?
CustomerServiceClient customerService = new GoogleAdsClient().GetService(Services.V5.CustomerService);
var customerResourceNames = customerService.ListAccessibleCustomers();