Ionic 3 WP-REST API发布请求401(未经授权)错误

时间:2018-08-30 19:46:08

标签: javascript angular typescript ionic3 woocommerce-rest-api

我正在开发一个简单的应用程序,以通过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));
    })

  }

关键客户端和机密正确的方式 enter image description here

1 个答案:

答案 0 :(得分:0)

您需要一个https连接,将以下行添加到woocommerce初始化中:

verifySsl: false,
queryStringAuth: true

任何post请求都需要一个https连接。