将内容类型与wp_remote_post(Set the content-type with wp_

2019-09-29 04:56发布

如何设置的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
标签: php wordpress