gpt4 book ai didi

php - 使用 wp_remote_post 设置内容类型

转载 作者:行者123 更新时间:2023-12-02 00:33:11 26 4
gpt4 key购买 nike

在使用函数 wp_remote_post 时,如何将 HTTP 请求 header 中的 content-type 字段设置为 application/json

最佳答案

查看 wp_remote_post 的文档这将为您提供一些关于您可以对远程请求执行的操作的额外信息。

当您使用该函数发出请求时,您可以在数组中的第二个参数 ($args) 中设置 header 。例如:

$args = array(
'headers' => array(
'content-type' => 'application/json'
),
);

$request = wp_remote_post( $url, $args );

关于php - 使用 wp_remote_post 设置内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50951072/

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