Harvest API-PHP-跟踪给定时间范围内的总小时数

时间:2016-04-08 22:05:23

标签: php time harvest

我需要使用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";

}

?>

请建议一种方法来解决这个问题

0 个答案:

没有答案