在Wordpress.com上发布REST API [错误401,不允许]

时间:2017-09-25 01:38:11

标签: wordpress rest

我想在我的wordpress.com网站(在免费的wordpress.com平台上托管的wordpress网站)上发布文章。

端点,GET on:https://public-api.wordpress.com/wp/v2/sites/donnadulcinea.wordpress.com/posts

使用Basic-Auth标头。请求正文(用于测试),

{"title":"New Rest Post"}

响应:

{
    "code": "rest_cannot_create",
    "message": "Sorry, you are not allowed to create posts as this user.",
    "data": {
        "status": 401
    }
}

怎么了?我在哪里可以找到一个最终的例子,在wordpress.com域上发布一个非常简单的帖子?

1 个答案:

答案 0 :(得分:2)

首先,您使用的是基本的auth插件吗? here

其次,我不确定您的端点是否正确。这就是我的用法:

http://localhost/wp-json/wp/v2/posts

我在我的网站上尝试了这个json:

{
    "title":"title",
    "content":"content",
    "categories":"news",
    "status":"publish"
}

并且有效