私は次のように書いています
<?php
require_once 'HarvestAPI.php';
/* Register Auto Loader */
spl_autoload_register(array('HarvestAPI', 'autoload'));
$api = new HarvestAPI();
$api->setUser( "nida.amin@gmail.com" );
$api->setPassword( "aaabbb12345" );
$api->setAccount( "heavenscompany" );
$api->setRetryMode( HarvestAPI::RETRY );
$api->setSSL(true);
$result = $api->getClients();
foreach( $result->data as $client ) {
if( $result->isSuccess() ) {
echo $client->get( "name" );
echo $client->details;
}
}
?>
Harvest API は初めてです。php の Harvest API で、電子メール、携帯電話番号、オフィスなど、クライアントの他の連絡先の詳細を取得する方法を教えてください。