Background
thinkphp WeChat 공개 계정 프로그램은 WeChat 인터페이스를 적극적으로 호출하고 access_token을 사용해야 하며, 공개 계정 메뉴를 설정하려면 요청을 적극적으로 보내야 합니다.
GuzzleHTTP를 선택하는 이유
Guzzle은 쉽게 요청을 보내고 웹 서비스에 통합하는 데 사용되는 PHP HTTP 클라이언트입니다.
接口简单:构建查询语句、POST请求、分流上传下载大文件、使用HTTP cookies、上传JSON数据等等。 发送同步或异步的请求均使用相同的接口。 使用PSR-7接口来请求、响应、分流,允许你使用其他兼容的PSR-7类库与Guzzle共同开发。 抽象了底层的HTTP传输,允许你改变环境以及其他的代码,如:对cURL与PHP的流或socket并非重度依赖,非阻塞事件循环。 中间件系统允许你创建构成客户端行为。
로그인 후 복사
Guzzle 중국어 문서: https://guzzle-cn.readthedocs.io/zh_CN/latest/
GuzzleHTTP 설치
1. 작곡가 설치thinkphp6이 작곡가와 함께 설치되기 때문에 내 환경에는 작곡가가 이미 설치되어 있습니다. 여기서는 설치 방법을 건너뜁니다. 필요하시면 바이두를 이용해주세요.
2. Guzzle 설치
tp 프로젝트 디렉토리에 진입
cd /Applications/XAMPP/htdocs/tp1/tp
로그인 후 복사
설치 명령어 실행
composer require guzzlehttp/guzzle
로그인 후 복사
extension=php_openssl.dll
http로 샘플 코드 보내기
1. GuzzleHttp를 컨트롤러에 추가하세요
use GuzzleHttp\Client; use GuzzleHttp\Exception\GuzzleException;
로그인 후 복사
2. 아래 샘플 프로그램은 tp6에서 HTTP GET을 사용하여 WeChat 공개 플랫폼의 액세스 토큰을 얻습니다
//微信公众平台获取access token url $url = 'https://api.weixin.qq.com/cgi-bin/token?'; //获取access token时需要携带的参数 $params = array( 'grant_type' => 'client_credential', 'appid' => config('app.WECHAT.APPID'), 'secret' => config('app.WECHAT.SECRET') ); $resp = null; try { //使用GuzzleHTTP发送get请求 $client = new Client(); $resp = $client->request('GET', $url.http_build_query($params)); } catch (GuzzleException $e){ print($e); } if (empty($resp)) { return null; } //获取微信公众平台的response $data = json_decode($resp->getBody(), true); if (isset($data['errcode']) && $data['errcode'] != 0) { throw new \think\Exception ($data['errmsg'], $data['errcode']); }
로그인 후 복사
http 포스트 샘플 코드 보내기
사용법은 매우 간단합니다. 코드만 보면 됩니다.
/** * 创建自定义菜单 */ public function menu() { require __DIR__ . '/../../vendor/autoload.php'; //构建HTTP post JSON body数据 $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 ) ) ); //构造请求json body和header数据 $options = json_encode($data, JSON_UNESCAPED_UNICODE); $jsonData = [ 'body' => $options, 'headers' => ['content-type' => 'application/json'] ]; $resp = null; try { $client = new Client(); //生成微信公众号菜单需要调用的微信接口url $url = 'https://api.weixin.qq.com/cgi-bin/menu/create?access_token=' . $this->_getAccessToken(); //发送http post请求 $resp = $client->post($url, $jsonData); } catch (GuzzleException $e){ print($e); } if (empty($resp)) { return null; } echo $resp->getBody(); }
로그인 후 복사