使用功能content-type
时如何在HTTP请求的标头中将application/json
字段设置为wp_remote_post
?
答案 0 :(得分:2)
查看wp_remote_post
的文档,这将为您提供有关如何处理远程请求的更多信息。
使用该函数发出请求时,可以在数组的第二个参数($args
)中设置标头。例如:
$args = array(
'headers' => array(
'content-type' => 'application/json'
);
);
$request = wp_remote_post( $url, $args );