gpt4 book ai didi

php - 自定义选项不支持客户端

转载 作者:行者123 更新时间:2023-12-05 02:30:50 27 4
gpt4 key购买 nike

我正在尝试使用 symfony 6 使用 Elasticsearch 的 ClientBuilder。我收到以下错误

The HTTP client Symfony\Component\HttpClient\Psr18Client is not supported for custom options

这是我试过的代码。我在 laravel 中有相同的代码行。

$hosts = ['https://localhost:9200'];
$client = ClientBuilder::create()
->setHosts($hosts)
->setSSLVerification(false)
->setBasicAuthentication('elastic', 'password')
->build();

最佳答案

刚刚在 Laravel 9 应用程序中遇到了同样的问题(以及包中的一些其他错误)。

一定要手动设置客户端,否则它会使用\Http\Discovery\Psr18ClientDiscovery找到第一个扩展所需接口(interface)的类\Psr\Http\Client\ClientInterface。在我们的例子中是 Symfony\Component\HttpClient\Psr18Client,目前还不受支持(参见 https://github.com/elastic/elasticsearch-php/issues/990)。

$hosts = ['https://localhost:9200'];

$client = ClientBuilder::create()
->setHttpClient(new \GuzzleHttp\Client)
->setHosts($hosts)
->setSSLVerification(false)
->setBasicAuthentication('elastic', 'password')
->build();

关于php - 自定义选项不支持客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71748177/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com