# EasyWechat [EasyWeChat](https://www.easywechat.com/) 是一個開源的微信 SDK (非微信官方 SDK)。 > 如果您使用了 Swoole 4.7.0 及以上版本,並且開啟了 native curl 選項,則可以不按照此文件進行操作。 > 因為元件預設使用 `Curl`,所以我們需要修改對應的 `GuzzleClient` 為協程客戶端,或者修改常量 [SWOOLE_HOOK_FLAGS](/zh-tw/coroutine?id=swoole-runtime-hook-level) ## 替換 `Handler` 以下以公眾號為例, ```php get('http', []); $config['handler'] = $stack = HandlerStack::create($handler); $app->rebind('http_client', new Client($config)); // 部分介面在請求資料時,會根據 guzzle_handler 重置 Handler $app['guzzle_handler'] = $handler; // 如果使用的是 OfficialAccount,則還需要設定以下引數 $app->oauth->setGuzzleOptions([ 'http_errors' => false, 'handler' => $stack, ]); ``` ## 修改 `SWOOLE_HOOK_FLAGS` 參考 [SWOOLE_HOOK_FLAGS](/zh-tw/coroutine?id=swoole-runtime-hook-level) ## 如何使用 EasyWeChat `EasyWeChat` 是為 `PHP-FPM` 架構設計的,所以在某些地方需要修改下才能在 Hyperf 下使用。下面我們以支付回撥為例進行講解。 1. `EasyWeChat` 中自帶了 `XML` 解析,所以我們獲取到原始 `XML` 即可。 ```php $xml = $this->request->getBody()->getContents(); ``` 2. 將 XML 資料放到 `EasyWeChat` 的 `Request` 中。 ```php request->getQueryParams(); $post = $this->request->getParsedBody(); $cookie = $this->request->getCookieParams(); $uploadFiles = $this->request->getUploadedFiles() ?? []; $server = $this->request->getServerParams(); $xml = $this->request->getBody()->getContents(); $files = []; /** @var \Hyperf\HttpMessage\Upload\UploadedFile $v */ foreach ($uploadFiles as $k => $v) { $files[$k] = $v->toArray(); } $request = new Request($get, $post, [], $cookie, $files, $server, $xml); $request->headers = new HeaderBag($this->request->getHeaders()); $app->rebind('request', $request); // Do something... ``` 3. 伺服器配置 如果需要使用微信公眾平臺的伺服器配置功能,可以使用以下程式碼。 > 以下 `$response` 為 `Symfony\Component\HttpFoundation\Response` 並非 `Hyperf\HttpMessage\Server\Response` > 所以只需將 `Body` 內容直接返回,即可通過微信驗證。 ```php $response = $app->server->serve(); return $response->getContent(); ``` ## 如何替換快取 `EasyWeChat` 預設使用 `檔案快取`,而現實場景是 `Redis` 快取居多,所以這裡可以替換成 `Hyperf` 提供的 `hyperf/cache` 快取元件,如您當前沒有安裝該元件,請執行 `composer require hyperf/cache` 引入,使用示例如下: ```php get(CacheInterface::class); ```