Ben hesap bilgilerinize erişmek için (v13) aracılığıyla Google APIlity istemcisi kullanmak zorunda. Ben yazdım ve ben CTRL + C kullanarak komut satırında onu öldürmek komut çalıştırıyorum eğer ben kullanarak API erişmeye çalıştığınızda, bir hata alıyorum:
$apilityUser->getManagersClientAccounts()
Herhangi bir düşünce?
require_once('apility/apility.php');
$apilityUser = new APIlityUser(
$email,
$password,
$client_email,
$developer_token,
$application_token
);
# get all of the accounts (IT DIES HERE)
if(!$emailAccounts = $apilityUser->getManagersClientAccounts()){
fwrite($STDERR, '** ERROR ** There was an error while trying to connect to the partner!'."\n");
fclose($STDERR);
exit;
}