如何使用高清帐户将所有我的btc地址的交易列表获取为json格式。 PHP。我需要链接
$json_url = "http://127.0.0.1:3000/merchant/$guid/accounts/0?password=$pass";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $json_url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$content = json_decode(curl_exec($ch));
curl_close ($ch);