我收到此错误。在此服务器上找不到请求的URL / wp / v2 / posts。
当尝试在node.js中使用WP API发布新帖子时。
var WPAPI = require('wpapi')
var wp = new WPAPI({
endpoint: 'http://example.com',
username: 'test',
password: 'test'
})
wp.posts()
.create({
title: 'Your Post Title',
content: 'Your post content',
status: 'publish'
})
.then(function(response) {
console.log(response.id)
})
.catch(function(err) {
console.log(err)
})
代码取自https://github.com/WP-API/node-wpapi
此问题的可能原因是什么?我试图将永久链接更改为邮编。