我正在使用woocommerce rest api
来获取woocommerce的状态列表,但是它返回如下错误:oauth_consumer_key parameter is missing
使用V3获取状态,这是端点:myurl/wc-api/v3/orders/statuses
类型:OAuth 1.0
参数:
消费者密钥:xxxxxxxxxxxxx 消费者秘密:xxxxxxxxxxxx 签名方法:HMAC-SHA1
在postman
中,它会返回以下响应,这很好。
{
"order_statuses": {
"pending": "Pending payment",
"processing": "Processing",
"delievery-boy": "Delievery Boy Assign",
"on-hold": "Shipped",
"completed": "Completed",
"cancelled": "Cancelled",
"refunded": "Refunded",
"failed": "Failed"
}
}
但是尝试将该API应用于ionic
应用程序会返回错误oauth_consumer_key parameter is missing
的错误,请尝试多种方法,但没有成功。