gpt4 book ai didi

guzzle - 需要在 guzzle 请求上设置标题

转载 作者:行者123 更新时间:2023-12-04 12:47:13 27 4
gpt4 key购买 nike

我需要将 header 类型添加到下面的 guzzle 请求中,但无法弄清楚如何在不出错的情况下添加它这是我要添加的内容:

$command->set('command.headers', array('content-type' => 'application/x-www-form-urlencoded

下面这段代码:

<?php
$url = "https://jsonplaceholder.typicode.com/posts";
$client = \Drupal::httpClient();

$post_data = array('color' => 'red');
$response = $client->request('POST', $url, [
'form_params' => $post_data,
'verify' => false
]);
$body = $response->getBody();
dsm($body);
?>

最佳答案

当我需要在 D8 处使用 Guzzle 进行 POST 时,我像这样传递了 Content-Type:

$url = "https://jsonplaceholder.typicode.com/posts";
$client = \Drupal::httpClient();

$post_data = array('color' => 'red');
$response = $client->request('POST', $url, [
'headers' => ['Content-Type' => 'application/json'],
'body' => rawData($post_data),
]);
$body = $response->getBody()->getContents();
$status = $response->getStatusCode();

一个好主意是使用 D8 依赖注入(inject)来传递 HTTP_CLIENT。

关于guzzle - 需要在 guzzle 请求上设置标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43723820/

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