使用wp_remote_post设置内容类型

时间:2018-06-20 14:50:17

标签: php wordpress

使用功能content-type时如何在HTTP请求的标头中将application/json字段设置为wp_remote_post

1 个答案:

答案 0 :(得分:2)

查看wp_remote_post的文档,这将为您提供有关如何处理远程请求的更多信息。

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

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

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