Thanks for give me the solutions. I did investigate this. But I am getting 
same error.

Google have 3 types of adwords account.
1) MCC account
2) Manager account
3) Client account.

I am right?

When I try to allow the oauth2 service with Manager account then I got 
success.
When I try to allow the oauth2 service with Client account then I got 
success.
When I try to allow the oauth2 service with MCC account then I got error. 
"CUSTOMER_NOT_FOUND"

I means, I want to get MCC account ID and LINK WITH OUR MCC ACCOUNT.

$oauth2 = new OAuth2([
'authorizationUri' => 'https://accounts.google.com/o/oauth2/v2/auth',
'tokenCredentialUri' => 'https://www.googleapis.com/oauth2/v4/token',
'redirectUri' => 'http://exaplne.com/index.php',
'clientId' => 
'******************************************.apps.googleusercontent.com',
'clientSecret' => '*****************',
'scope' => 'https://www.googleapis.com/auth/adwords',
'access_type' => 'offline',
'prompt' => 'consent',
]);
if (!isset($_GET['code'])) {

$oauth2->setState(sha1(openssl_random_pseudo_bytes(1024)));
$_SESSION['oauth2state'] = $oauth2->getState();

$config = [
'access_type' => 'offline'
];
header('Location: ' . $oauth2->buildFullAuthorizationUri($config));
exit;
} else {
$oauth2->setCode($_GET['code']);
$authToken = $oauth2->fetchAuthToken();
$refresh_token = $authToken['access_token'];
}

$session = (new 
AdWordsSessionBuilder())->fromFile('getcustomerid.ini')->withOAuth2Credential($oauth2)->build();

/* Creating object of Adwords services */
$adWordsServices = new AdWordsServices();

/* Adwords Customer services */
$customerService = $adWordsServices->get($session, CustomerService::class);
$customers = $customerService->getCustomers();
$customerId = $customers[0]->getCustomerId();

On Saturday, September 26, 2020 at 12:53:54 AM UTC+5:30 adsapiforumadvisor 
wrote:

> Hi Ankitt,
>
> The AuthenticationError.CUSTOMER_NOT_FOUND 
> <https://developers.google.com/adwords/api/docs/common-errors?authuser=3&hl=id#AuthenticationError.CUSTOMER_NOT_FOUND>
>  error is 
> encountered when no Google Ads account is found for the customer Id 
> provided in the header. Could you please confirm if the client customer 
> Id(CID) belongs to a valid account and if the OAuth2 credentials 
> <https://developers.google.com/adwords/api/docs/guides/authentication> were 
> created using an email address which has access to your account(s). If the 
> issue still persists, could you please share the complete request and error 
> response logs for me to investigate further?
>
>
> Thanks,
> [image: Google Logo] 
> Nirmitabahen Gaurav Patel 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q24apbu:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/35e10870-56a3-40b4-9211-77332153bc1cn%40googlegroups.com.

Reply via email to