appId = $appId; $this->apiKey = $apiKey; $this->apiSecret = $apiSecret; $this->requestConfig = new TtsConfig($requestConfig); $this->logger = $logger; } /** * 合成文本,并返回结果(字节数组)在Response->getBody()->getContents() * * @param string $text 待合成的文本 * @return \GuzzleHttp\Psr7\Response * @throws Exception */ public function request($text) { $ttsHandler = new WsHandler( $this->signUriV1(TtsConstants::URI, [ 'appId' => $this->appId, 'apiKey' => $this->apiKey, 'apiSecret' => $this->apiSecret, 'host' => TtsConstants::HOST, 'requestLine' => TtsConstants::REQUEST_LINE, ]), $this->generateInput($text, $this->appId, $this->requestConfig->toArray()) ); if ($this->logger) { $ttsHandler->setLogger($this->logger); } $client = new WsClient([ 'handler' => $ttsHandler ]); return $client->sendAndReceive(); } }