gpt4 book ai didi

php - 使用 Guzzle 发送带有 JSON 的 POST 请求

转载 作者:行者123 更新时间:2023-12-02 06:28:51 25 4
gpt4 key购买 nike

$client = new Client();
$url = 'api-url';

$request = $client->post($url, [
'headers' => ['Content-Type' => 'application/json'],
'json' => ['token' => 'foo']
]);

return $request;

然后我返回 502 Bad Gateway 并且 Resource 被解释为 Document 但使用 MIME 类型 application/json 传输

我需要用一些 json 发出 POST 请求。我如何使用 Laravel 中的 Guzzle 做到这一点?

最佳答案

试一试

$response = $client->post('http://api.example.com', [
'json' => [
'key' => 'value'
]
]);

dd($response->getBody()->getContents());

关于php - 使用 Guzzle 发送带有 JSON 的 POST 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46387679/

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