gpt4 book ai didi

php - fatal error :使用 Guzzle 6 调用未定义的方法 GuzzleHttp\Client::request()

转载 作者:可可西里 更新时间:2023-11-01 12:59:51 25 4
gpt4 key购买 nike

我在 Laravel 5.2 中使用 Guzzle 6。

我正在尝试访问一个简单的内部 API:

use GuzzleHttp\Client;

$client = new Client(['base_uri' => getenv('URL_BASE').'api/v1/']);
$response = $client->request('GET', 'tournaments');

我收到这条消息:

Fatal error: Call to undefined method GuzzleHttp\Client::request()

当我看到 docs ,它说:

$client = new GuzzleHttp\Client(['base_uri' => 'https://foo.com/api/']);

但是 PHPStorm 无法解析 GuzzleHttp

我应该怎么做才能让它发挥作用???

最佳答案

我也在用guzzle,它对我有用,试试这个

use GuzzleHttp;
use GuzzleHttp\Subscriber\Oauth\Oauth1;

$client = new GuzzleHttp\Client();

要获得响应,试试这个

$response = $client->request('GET', 'tournaments',['query' => ['base_uri' => getenv('URL_BASE').'api/v1/']]);

如果不行就试试这个

$response = $client->request('GET', getenv('URL_BASE').'api/v1/tournaments');

关于php - fatal error :使用 Guzzle 6 调用未定义的方法 GuzzleHttp\Client::request(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35236073/

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