如何设置的content-type
字段来application/json
使用功能时,在我的HTTP请求头wp_remote_post
?
Answer 1:
检查文档wp_remote_post
这会给你,你可以用远程请求做一些额外的信息。
当使用该函数进行请求,则可以设置在第二个参数(报头$args
阵列内)。 例如:
$args = array(
'headers' => array(
'content-type' => 'application/json'
);
);
$request = wp_remote_post( $url, $args );
文章来源: Set the content-type with wp_remote_post