在HTTP API Wordpress中输入HTTP请求

时间:2015-07-08 11:54:15

标签: wordpress api http

我无法在WordPress中使用put http请求。

https://codex.wordpress.org/HTTP_API

此链接表示您可以通过wp_remote_request()完成此操作?但是在哪里指定?

任何人都可以帮我吗?我需要一个代码。

2 个答案:

答案 0 :(得分:0)

喜欢这个

$response = wp_remote_request( 'http://test.com/test', [
    'method' => 'PUT'
] );

答案 1 :(得分:0)

$body = array(
            "status" => "publish"
);
$args = array(
    'headers' => array(
    'Content-Type'   => 'application/json',
    ),
    'body'      => json_encode($body),
    'method'    => 'PUT'
);

$result =  wp_remote_request( "http:300/wp-json/wp/post/1", $args );