這篇文章主要介紹ThinkPHP6如何結(jié)合GuzzleHTTP發(fā)送HTTP請(qǐng)求,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司公司2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站制作、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元蠡縣做網(wǎng)站,已為上家服務(wù),為蠡縣各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108
thinkphp微信公眾號(hào)程序主動(dòng)調(diào)用微信的接口需要用到access_token,以及需要主動(dòng)發(fā)送請(qǐng)求設(shè)置公眾號(hào)菜單。
Guzzle是一個(gè)PHP的HTTP客戶端,用來(lái)輕而易舉地發(fā)送請(qǐng)求,并集成到我們的WEB服務(wù)上。
接口簡(jiǎn)單:構(gòu)建查詢語(yǔ)句、POST請(qǐng)求、分流上傳下載大文件、使用HTTP cookies、上傳JSON數(shù)據(jù)等等。 發(fā)送同步或異步的請(qǐng)求均使用相同的接口。 使用PSR-7接口來(lái)請(qǐng)求、響應(yīng)、分流,允許你使用其他兼容的PSR-7類庫(kù)與Guzzle共同開發(fā)。 抽象了底層的HTTP傳輸,允許你改變環(huán)境以及其他的代碼,如:對(duì)cURL與PHP的流或socket并非重度依賴,非阻塞事件循環(huán)。 中間件系統(tǒng)允許你創(chuàng)建構(gòu)成客戶端行為。
Guzzle中文文檔:https://guzzle-cn.readthedocs.io/zh_CN/latest/
1.安裝composer
因?yàn)閠hinkphp6采用composer安裝,所以我的環(huán)境上已經(jīng)裝好了composer,此處略過(guò)安裝composer方法。需要請(qǐng)自行百度。
2.安裝Guzzle
進(jìn)入到tp項(xiàng)目目錄
cd /Applications/XAMPP/htdocs/tp1/tp
執(zhí)行安裝命令
composer require guzzlehttp/guzzle
3.在php.ini文檔中打開extension=php_openssl.dll
1、在controller中引入GuzzleHttp
use GuzzleHttp\Client; use GuzzleHttp\Exception\GuzzleException;
2、下面的示例程序是在tp6中采用HTTP GET獲取微信公眾平臺(tái)的access token
//微信公眾平臺(tái)獲取access token url $url = 'https://api.weixin.qq.com/cgi-bin/token?'; //獲取access token時(shí)需要攜帶的參數(shù) $params = array( 'grant_type' => 'client_credential', 'appid' => config('app.WECHAT.APPID'), 'secret' => config('app.WECHAT.SECRET') ); $resp = null; try { //使用GuzzleHTTP發(fā)送get請(qǐng)求 $client = new Client(); $resp = $client->request('GET', $url.http_build_query($params)); } catch (GuzzleException $e){ print($e); } if (empty($resp)) { return null; } //獲取微信公眾平臺(tái)的response $data = json_decode($resp->getBody(), true); if (isset($data['errcode']) && $data['errcode'] != 0) { throw new \think\Exception ($data['errmsg'], $data['errcode']); }
用法非常簡(jiǎn)單,直接看代碼吧。
/** * 創(chuàng)建自定義菜單 */ public function menu() { require __DIR__ . '/../../vendor/autoload.php'; //構(gòu)建HTTP post JSON body數(shù)據(jù) $data = array( 'button' => array( array( 'type' => 'click', 'name' => '主菜單1', 'sub_button' => array( array( 'type' => 'click', 'name' => '子菜單1', 'key' => self::MENU_MAIN_1_CHILD_1 ), array( 'type' => 'view', 'name' => '百度', 'url' => 'https://www.baidu.com' ) ) ), array( 'type' => 'click', 'name' => '主菜單2', 'sub_button' => array( array( 'type' => 'click', 'name' => '子菜單1', 'key' => self::MENU_MAIN_2_CHILD_1 ), array( 'type' => 'view', 'name' => 'QQ', 'url' => 'http://www.qq.com' ) ) ), array( 'type' => 'click', 'name' => '主菜單3', 'key' => self::MENU_MAIN_3 ) ) ); //構(gòu)造請(qǐng)求json body和header數(shù)據(jù) $options = json_encode($data, JSON_UNESCAPED_UNICODE); $jsonData = [ 'body' => $options, 'headers' => ['content-type' => 'application/json'] ]; $resp = null; try { $client = new Client(); //生成微信公眾號(hào)菜單需要調(diào)用的微信接口url $url = 'https://api.weixin.qq.com/cgi-bin/menu/create?access_token=' . $this->_getAccessToken(); //發(fā)送http post請(qǐng)求 $resp = $client->post($url, $jsonData); } catch (GuzzleException $e){ print($e); } if (empty($resp)) { return null; } echo $resp->getBody(); }
以上是“ThinkPHP6如何結(jié)合GuzzleHTTP發(fā)送HTTP請(qǐng)求”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!