0

我已经生成了消费者密钥和消费者秘密,但我不知道如何应用它在 Postman 上进行身份验证。这是下面的屏幕截图:

截图来自 2016-08-17 14-28-18

网址如下所示:https://mystore.com/wp-json/wc/v1/coupons?oauth_consumer_key=ck_XXXXXXXXXXXXXXX&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1471440398&oauth_nonce=Qaq8cK&oauth_version=1.0&oauth_signature=XXXXXXXXXXXXXXXXXXXXXXXXXw=

但这是返回错误 401:

{ "code": "woocommerce_rest_cannot_view", "message": "Sorry, you cannot list resources.", "data": { "status": 401 } } 我已阅读文档,但没有显示任何示例。

4

1 回答 1

1

Authentication如果您的网站在 HTTPS 上运行(如果您正在运行 WooCommerce,则应该),您可以通过标头发送您的凭据。

这是文档的相关部分: https://woothemes.github.io/woocommerce-rest-api-docs/?shell#authentication-over-
https

于 2016-08-17T16:16:25.397 回答