diff --git a/application/index/controller/Index.php b/application/index/controller/Index.php index 77bb04dc2..0ae9d6f7b 100644 --- a/application/index/controller/Index.php +++ b/application/index/controller/Index.php @@ -50,7 +50,7 @@ class Index extends Controller public function wuliu() { - $order = '1202247993797'; + $order = '444500528707'; dump(ToolsService::express($order)); } diff --git a/extend/service/ToolsService.php b/extend/service/ToolsService.php index c378cf828..1bf9546bd 100644 --- a/extend/service/ToolsService.php +++ b/extend/service/ToolsService.php @@ -164,12 +164,12 @@ class ToolsService public static function express($code) { $result = []; - $autoResult = HttpService::get("http://www.kuaidi100.com/autonumber/autoComNum?text={$code}"); + $client_ip = Request::instance()->ip(); + $header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip]; + $autoResult = HttpService::get("http://www.kuaidi100.com/autonumber/autoComNum?text={$code}", [], 30, $header); foreach (json_decode($autoResult)->auto as $vo) { $microtime = microtime(true); $url = "http://www.kuaidi100.com/query?type={$vo->comCode}&postid={$code}&id=1&valicode=&temp={$microtime}"; - $client_ip = Request::instance()->ip(); - $header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip]; $result[$vo->comCode] = json_decode(HttpService::get($url, [], 30, $header), true); } return $result;