hi
i use nodeJs to communicate with adwords account via the api.
it works perfectly but when launching an oauth popup to the user, it asks for permissions to "manage adwords accout"
in my case, I only require "READ" permissions from the user due to the nature of my service which is only to provide metrics for each campaign.
my code is as follow:
const {OAuth2Client} = require('google-auth-library');
generateAuthenticationUrl() {
return this.oauth2Client.generateAuthUrl({
access_type: 'offline',
prompt: 'consent',
});
}
is it doable? can I define a READ-ONLY scope? if so, how do I achieve that?
Thanks, Roby (-: