我正在使用postman检查WooCommerce中的REST API调用。当我调用Woocommerce默认API时。它显示错误,如。
{
"code": "woocommerce_rest_cannot_create",
"message": "Sorry, you are not allowed to create resources.",
"data": {
"status": 401
}
}
创建客户API的基本身份验证和POST方法时显示上述错误。
当我试图用cURL调用Display products API时
http://example.com/wp-json/wc/v2/products
使用postman的GET方法,它将显示以下错误。
{
"code": "woocommerce_rest_cannot_view",
"message": "Sorry, you cannot list resources.",
"data": {
"status": 401
}
}
如果有人能把我从头痛中解救出来,那就太好了。谢谢