以下是我的PostHandler,我试图从我的React App发布博客,但我收到状态代码405
。
postBlogHandler = () => {
const post = {
title: this.state.title,
content: this.state.content,
author: this.state.author
}
axios.post('https://public-api.wordpress.com/rest/v1.2/sites/ishhaanpatel.wordpress.com/posts/new', post)
.then( response => {
console.log(response);
} );
}
以下是回复。
{“error”:“unauthorized”,“message”:“不允许使用该方法。”}
是否有在线指南,我们可以学习如何使用不同的API并掌握发送不同的HTTP请求和处理响应?
非常感谢你。
答案 0 :(得分:0)
我需要在API端点中包含API令牌参数。