// 发起API请求
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,
"https://web.example.com/v1/data");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
http_build_query($params));
curl_setopt($ch, CURLOPT_HTTPHEADER,
["Authorization: Bearer ".$token]);
$response = curl_exec($ch);
echo $response;
平均响应时间 < 50ms
多地容灾部署
银行级加密传输
多重签名验证
标准RESTful接口
多语言SDK支持