我写的是
<?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?
答案 0 :(得分:0)
您可以在客户详细信息中找到该电子邮件地址。请尝试以下方法:
var_dump($client->details);die();
然后你应该获得details变量中的内容的输出。希望它是一个数组,你可以从中提取电子邮件地址。