我需要使用Harvest API输出给定时间范围内的总小时数。我用PHP编码但它出错了调用未定义的方法HarvestAPI :: getUsersActiveTimer() 输入是 开始日期 结束日期 产量 总时数
这是我的代码
<?php
require_once( dirname(__FILE__) . '/HarvestAPI.php' );
spl_autoload_register(array('HarvestAPI', 'autoload') );
$api = new HarvestAPI();
$api->setUser( $user );
$api->setPassword( $password );
$api->setAccount( $account_name );
$api->setSSL( true );
$result = $api->getUsersActiveTimer( $userid );
if( $result->isSuccess() ) {
echo "It is Successful!";
if( ! is_null( $result->data ) ){
echo $result->get( "started-at" );
}
}
else{
echo "It is not Successful";
}
?>
请建议一种方法来解决这个问题