function makeRequest() {
var driveService = getDriveService(); //this is the function that calls the adwords api
console.log(driveService)
headers: {
Authorization: 'Bearer ' + driveService.getAccessToken() //getting the access token from the above call
},
'method' : 'get',
'contentType' : 'application/json'
});
console.log(response)
}