有没有办法使用Rest API为用户添加功能?
我正在以这种方式创建用户:
$.ajax( {
url: Slug_API_Settings.root + ‘wp/v2/users/’,
method: ‘POST’,
beforeSend: function ( xhr ) {
xhr.setRequestHeader( ‘X-WP-Nonce’, Slug_API_Settings.nonce );
},
data:{
email: ‘someone@somewhere.net’,
username: ‘someone’,
password: Math.random().toString(36).substring(7)
}
})
.done( function ( response ) {
console.log( response );
})
然后我需要为新用户分配功能。有人有这方面的例子吗?
非常感谢!
答案 0 :(得分:0)
您可以按照以下代码将WordPress REST API的用户角色和功能添加到新用户:
$.ajax( {
url: Slug_API_Settings.root + ‘wp/v2/users/’,
method: ‘POST’,
beforeSend: function ( xhr ) {
xhr.setRequestHeader( ‘X-WP-Nonce’, Slug_API_Settings.nonce );
},
data:{
email: ‘someone@somewhere.net’,
username: ‘someone’,
password: Math.random().toString(36).substring(7),
roles: ‘contributor’
}
})
.done( function ( response ) {
console.log( response );
})
角色conotributor
具有delete_posts
,edit_posts
和read
等功能,您还可以使用extra_capabilities
参数为用户分配额外功能。
您还可以参考WordPress API官方文档Here
请同时参阅角色和功能Here.