Use Adwords API (MccApp) in Google Apps Script
问题 I have a custom API written in GAS (Google Apps Script) and would like to utilize the Adwords API from within it. Sometimes used along with the MccApp, the service is readily available from within Adwords Scripts itself (My Client Center > Scripts). For Example: function account(client) { var result = { 'id': null, 'campaigns': {} } result.id = client.getCustomerId() var currentAct = AdWordsApp.currentAccount() MccApp.select(client) var campaignIterator = AdWordsApp.campaigns().get() while