Hi,
We perform changes on behalf of other PPC person, who granted us a permission via OAuth protocol (using refresh and access tokens instead of our token), but in the Change History of the AdWords GUI our email is displayed.
Can we somehow force it to register the changes on the email of the person who has granted us a permission?
Code flow:
GoogleCredential credential =
new GoogleCredential.Builder()
.setTransport(HTTP_TRANSPORT)
.setJsonFactory(JSON_FACTORY)
.setClientSecrets(IOauthConfiguration.CLIENT_ID, IOauthConfiguration.CLIENT_SECRET).build();
credential.setAccessToken(accessToken);
credential.setRefreshToken(refreshToken);
AdWordsSession session = new AdWordsSession.Builder()
.fromFile()
.withOAuth2Credential(credential)
.build();
Thanks