我正试图通过WP REST API发表评论。这是我的要求:
axios({
method: \'post\',
url: `${WP_API_ENDPOINT}/comments`,
headers: {\'X-WP-Nonce\': wpRestSettings.nonce},
data: {
"post": 8911,
"author_name": "Mr. Author",
"author_email": "[email protected]",
"content": "A new comment."
}
})
我还尝试在数据中添加nonce,而不是在值下面
_wpnonce
根据
spec.
我看到了one answer 建议添加此筛选器:add_filter( \'filter_rest_allow_anonymous_comments\', \'__return_true\' );
我一直收到同样的401回复。如果我使用basic auth发布,它可以工作,nonce则不行。