我正在开发一个简单的应用程序,以通过wp-rest api在Wordpress(woocommerce)中创建用户。 但是当我尝试创建新客户时,它在控制台中显示401 Unauthorized错误。这是我的要求代码。
signup(){
let customerData = {
customer : {}
}
customerData.customer = {
"email": this.newUser.email,
"first_name": this.newUser.first_name,
...
"billing_address": {
"first_name": this.newUser.first_name,
...
},
"shipping_address": {
"first_name": this.newUser.first_name,
...
}
}
if(this.billing_shipping_same){
this.newUser.shipping_address = this.newUser.shipping_address;
}
this.WooCommerce.postAsync('customers', customerData).then( (data) => {
console.log(JSON.parse(data.body));
})
}
答案 0 :(得分:0)
您需要一个https
连接,将以下行添加到woocommerce初始化中:
verifySsl: false,
queryStringAuth: true
任何post
请求都需要一个https
连接。