统计
查询应用的账户信息
try {
$res = $client->api('app')->accounts();
print_r($res);
} catch (\Exception $e) {
http_response_code(500);
print_r($e);
}交易统计及余额信息
try {
$res = $client->api('app')->stats(1, time());
print_r($res);
} catch (\Exception $e) {
http_response_code(500);
print_r($e);
}Last updated
Was this helpful?