真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

網(wǎng)絡(luò)請(qǐng)求插件Guzzle的使用方法

在寫(xiě)后臺(tái)代碼時(shí),避免不了需要與其他第三方接口交互,如向服務(wù)號(hào)下發(fā)模板消息,有時(shí)可能需要下發(fā)超過(guò) 10 萬(wàn)條。這時(shí)不得不考慮使用異步和「多線程」的網(wǎng)絡(luò)請(qǐng)求。

成都創(chuàng)新互聯(lián)專(zhuān)注于企業(yè)成都營(yíng)銷(xiāo)網(wǎng)站建設(shè)、網(wǎng)站重做改版、象山網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5場(chǎng)景定制、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為象山等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。

今天向 PHP 工程師們推薦一個(gè) Guzzle 插件。

Guzzle

Guzzle 是一個(gè) PHP 的 HTTP 客戶(hù)端,用來(lái)輕而易舉地發(fā)送請(qǐng)求,并集成到我們的 WEB 服務(wù)上。

接口簡(jiǎn)單:構(gòu)建查詢(xún)語(yǔ)句、POST 請(qǐng)求、分流上傳下載大文件、使用 HTTP cookies、上傳 JSON 數(shù)據(jù)等等。

發(fā)送同步或異步的請(qǐng)求均使用相同的接口。

使用 PSR-7 接口來(lái)請(qǐng)求、響應(yīng)、分流,允許你使用其他兼容的 PSR-7 類(lèi)庫(kù)與 Guzzle 共同開(kāi)發(fā)。

抽象了底層的 HTTP 傳輸,允許你改變環(huán)境以及其他的代碼,如:對(duì) cURL與 PHP 的流或 socket 并非重度依賴(lài),非阻塞事件循環(huán)。

中間件系統(tǒng)允許你創(chuàng)建構(gòu)成客戶(hù)端行為。

安裝 Guzzle

本文結(jié)合 Laravel 項(xiàng)目介紹 Guzzle 基本使用,所以使用 composer 來(lái)安裝 Guzzle 再適合不過(guò)了,而且 Guzzle 官網(wǎng)也推薦使用 composer 來(lái)安裝。

composer require guzzlehttp/guzzle:~6.0
// 或者
php composer.phar require guzzlehttp/guzzle:~6.0

發(fā)送簡(jiǎn)單的 POST 請(qǐng)求

訪問(wèn)第三方接口,基本上都是 POST 請(qǐng)求為主。如你想做一個(gè)簡(jiǎn)單的智能聊天工具,這時(shí)候可以借助圖靈機(jī)器人 API,發(fā)送一個(gè) POST 請(qǐng)求獲取自動(dòng)回答內(nèi)容,直接上代碼:

 '*****',
            'userid' => 'yemeishu'
        ];
        $params['info'] = $request->input('info', '你好嗎');
        $client = new Client();
        $options = json_encode($params, JSON_UNESCAPED_UNICODE);
        $data = [
            'body' => $options,
            'headers' => ['content-type' => 'application/json']
        ];
        // 發(fā)送 post 請(qǐng)求
        $response = $client->post('http://www.tuling123.com/openapi/api', $data);
        $callback = json_decode($response->getBody()->getContents());
        return $this->output_json('200', '測(cè)試圖靈機(jī)器人返回結(jié)果', $callback);
    }
}

Guzzle client->post 函數(shù)還是很簡(jiǎn)單的,只需要訪問(wèn)的接口,和請(qǐng)求的參數(shù),參數(shù)中主要包含:body、headers、query等,具體可參考

http://guzzle-cn.readthedocs.io/zh_CN/latest/quickstart.html#id8

測(cè)試下:

網(wǎng)絡(luò)請(qǐng)求插件Guzzle的使用方法

網(wǎng)絡(luò)請(qǐng)求插件Guzzle的使用方法

注:圖靈機(jī)器人還是很智能的,根據(jù)相同的 userid 能夠識(shí)別上下文,做到智能聊天的。

發(fā)送異步的 POST 請(qǐng)求

在 PHP 開(kāi)發(fā)中主要是「面向過(guò)程」式的開(kāi)發(fā)方式,但請(qǐng)求第三方接口時(shí),有時(shí)候并不需要等待第三方接口返回結(jié)果才繼續(xù)執(zhí)行。如用戶(hù)購(gòu)買(mǎi)成功時(shí),我們需要向短信接口,發(fā)送一個(gè) post 請(qǐng)求,由短信平臺(tái)發(fā)送一條短信給用戶(hù),告知用戶(hù)支付成功了,因?yàn)檫@類(lèi)「提醒消息」屬于「額外的附加功能」,并不需要在用戶(hù)支付時(shí)「知道」有沒(méi)有發(fā)送提醒成功。

這時(shí)候可以使用 Guzzle 的異步請(qǐng)求功能,直接看代碼:

public function sms(Request $request) {
    $code = $request->input('code');
    $client = new Client();
    $sid = '9815b4a2bb6d5******8bdb1828644f2';
    $time = '20171029173312';
    $token = 'af8728c8bc*******12019c680df4b11c';

    $sig =  strtoupper(md5($sid.$token.$time));

    $auth = trim(base64_encode($sid . ":" . $time));

    $params = ['templateSMS' => [
            'appId' => '12b43**********0091c73c0ab',
            'param' => "coding01,$code,30",
            'templateId' => '3***3',
            'to' => '17689974321'
        ]
    ];
    $options = json_encode($params, JSON_UNESCAPED_UNICODE);
    $data = [
        'query' => [
            'sig' => $sig
        ],
        'body' => $options,
        'headers' => [
            'content-type' => 'application/json',
            'Authorization' => $auth
        ]
    ];

    // 發(fā)送 post 請(qǐng)求
    $promise = $client->requestAsync('POST', 'https://api.ucpaas.com/2014-06-30/Accounts/9815b4a2bb6d5******8bdb1828644f2/Messages/templateSMS', $data);

    $promise->then(
        function (ResponseInterface $res) {
            Log::info('---');
            Log::info($res->getStatusCode() . "\n");
            Log::info($res->getBody()->getContents() . "\n");
        },
        function (RequestException $e) {
            Log::info('-__-');
            Log::info($e->getMessage() . "\n");
        }
    );
    $promise->wait();

    return $this->output_json('200', '測(cè)試短信 api', []);
}

先返回接口數(shù)據(jù):

網(wǎng)絡(luò)請(qǐng)求插件Guzzle的使用方法

然后再輸出 Log:

[2017-10-29 09:53:14] local.INFO: ---  
[2017-10-29 09:53:14] local.INFO: 200
  
[2017-10-29 09:53:14] local.INFO: {"resp":{"respCode":"000000","templateSMS":{"createDate":"20171029175314","smsId":"24a93f323c9*****8608568"}}}

最后收到短信信息:

網(wǎng)絡(luò)請(qǐng)求插件Guzzle的使用方法

發(fā)送多線程異步 POST 請(qǐng)求

「發(fā)送多線程異步 POST 請(qǐng)求」在很多場(chǎng)合中使用到的,如:雙十一快到了,可以做一些回饋老用戶(hù)的活動(dòng),這是就需要批量的向老用戶(hù)推送一條模板消息,告訴用戶(hù)參與哪些活動(dòng)的。這時(shí)候就需要用到多線程異步請(qǐng)求微信公眾號(hào)接口。

直接上代碼:

public function send($templateid, $openid, $url, $data) {
        $client = $this->bnotice->getHttp()->getClient();

        $requests = function ($open_ids) use ($templateid, $url, $data) {
            foreach($open_ids as $v){
                try {
                    yield $this->bnotice
                        ->template($templateid)
                        ->to($v)
                        ->url($url)
                        ->data($data)
                        ->request();
                } catch(Exception $e) {
                    Log::error('sendtemplate:'.$e->getMessage());
                }
            }
        };

        $pool = new Pool($client, $requests($openid), [
            'concurrency' => 16,
            'fulfilled' => function ($response, $index) {
            },
            'rejected' => function ($reason, $index) {
            },
        ]);

        $promise = $pool->promise();

        $promise->wait();
    }

其中 request 方法:

public function request($data = [])
    {
        $params = array_merge([
            'touser' => '',
            'template_id' => '',
            'url' => '',
            'topcolor' => '',
            'miniprogram' => [],
            'data' => [],
        ], $data);
        
        $required = ['touser', 'template_id'];

        foreach ($params as $key => $value) {
            if (in_array($key, $required, true) && empty($value) && empty($this->message[$key])) {
                throw new InvalidArgumentException("Attribute '$key' can not be empty!");
            }

            $params[$key] = empty($value) ? $this->message[$key] : $value;
        }

        $params['data'] = $this->formatData($params['data']);

        $this->message = $this->messageBackup;

        $options = json_encode ( $params,  JSON_UNESCAPED_UNICODE);
        $data = [
            'query' => [
                'access_token' => $this->getAccessToken()->getToken()
            ],
            'body' => $options,
            'headers' => ['content-type' => 'application/json']
        ];
        return function() use ($data) {
            return $this->getHttp()->getClient()->requestAsync('POST', $this::API_SEND_NOTICE, $data);
        };
    }

Guzzle 多線程異步請(qǐng)求原型函數(shù),使用 GuzzleHttp\Pool 對(duì)象

use GuzzleHttp\Pool;use GuzzleHttp\Client;use GuzzleHttp\Psr7\Request;$client = new Client();$requests = function ($total) {
    $uri = 'http://127.0.0.1:8126/guzzle-server/perf';
    for ($i = 0; $i < $total; $i++) {
        yield new Request('GET', $uri);
    }};$pool = new Pool($client, $requests(100), [
    'concurrency' => 5,
    'fulfilled' => function ($response, $index) {
        // this is delivered each successful response
    },
    'rejected' => function ($reason, $index) {
        // this is delivered each failed request
    },]);// Initiate the transfers and create a promise$promise = $pool->promise();// Force the pool of requests to complete.$promise->wait();

總結(jié)

有了 Guzzle,極大方便了我們并發(fā)異步請(qǐng)求第三方接口。如果時(shí)間允許,我們可以看看 Guzzle 源代碼,看看是如何實(shí)現(xiàn)的。

以上就是PHP網(wǎng)絡(luò)請(qǐng)求插件Guzzle使用的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!


標(biāo)題名稱(chēng):網(wǎng)絡(luò)請(qǐng)求插件Guzzle的使用方法
文章鏈接:http://weahome.cn/article/pocsij.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部