4
我正在使用woocommerce rest API來構建電子商務Android應用程序。在Android中使用woocommerce rest api更改用戶密碼
我想用woocommerce休息API來實現更改密碼,我是指這個鏈接
https://woocommerce.github.io/woocommerce-rest-api-docs/ ,但它無法正常工作。
如何才能實現更改密碼?
我正在使用woocommerce rest API來構建電子商務Android應用程序。在Android中使用woocommerce rest api更改用戶密碼
我想用woocommerce休息API來實現更改密碼,我是指這個鏈接
https://woocommerce.github.io/woocommerce-rest-api-docs/ ,但它無法正常工作。
如何才能實現更改密碼?
我有使用Ionic3構建應用程序的woocommerce作爲後端的相同問題。
以下代碼適用於我,但您需要找到一種方法來計算出客戶ID。
updateCustomer(){
this.customer.id=YOUR_CUSTOMER_ID;
this.customer.password = NEW_PASSWORD;
this.WooCommerce.putAsync("customers/" + this.customer.id, {customer: this.customer}).then((res)=>{
if(JSON.parse(res.body).customer){
console.log('customer updated');
}
}, (err)=>{
console.log(err.body)
})
}