我正在使用WP Rest API插件将Wordpress用作iOS应用程序的后端。我需要使用以下端点更新用户名
http://......com/wp-json/wp/v2/users/1?context=edit
这就是我得到的回应。
{
"code": "rest_cannot_edit",
"message": "Sorry, you are not allowed to edit resource.",
"data": {
"status": 401
}
}
Rest API插件似乎不支持用户配置文件更新,或者我缺少了一些身份验证参数?
提前感谢,期待最佳解决方案。