Hello,
I could change the customer id on the old SDK as below.
$user = new AdWordsUser ();
$user->LogAll ();
$user->SetClientCustomerId (1111111); // <---- this one
I have not found out how to do this on the new SDK. We need to change this value because there are multiple users who use our advertising panel. How are we going to do?
$session = (new AdWordsSessionBuilder ())
->fromFil ()
->withOAuth2Credential($oAuth2Credential)
->build ();
$dession->SetClientCustomerId (111111); // <---- like this
Thnx.