diff --git a/README_CN.md b/README_CN.md index 9d9eddf..fed3490 100644 --- a/README_CN.md +++ b/README_CN.md @@ -25,6 +25,20 @@ Huobi 文档地址 [https://github.com/huobiapi/API_Docs/wiki/REST_api_reference composer require "linwj/huobi dev-master" ``` +支持本地开发代理设置 [More](https://github.com/zhouaini528/huobi-php/blob/master/tests/spot/proxy.php#L21) +```php +$huobi=new HuobiSpot(); + +//If you are developing locally and need an agent, you can set this +$huobi->setProxy(); + +//More flexible Settings +$huobi->setProxy([ + 'http' => 'http://127.0.0.1:12333', + 'https' => 'http://127.0.0.1:12333', +]); +``` + ### 现货交易 API Market related API [More](https://github.com/zhouaini528/huobi-php/blob/master/tests/spot/market.php)