我正在使用 Woocomemrce REST API 连接我的网站。在订单方面一切正常,但不适用于订阅。我尝试了以下代码来获取订阅,但它给出“错误:找不到与 URL 和请求方法 [rest_no_route] 匹配的路由”
$woocommerce = new Client(
'https://www.example.com',
'ck_OUR_CONSUMER_KEY',
'cs_OUR_CONSUMER_SECRET',
[
'wp_api' => true,
'version' => 'wc/v2',
]
);
try {
print_r($woocommerce->get('orders')); //this works and fetch orders
print_r($woocommerce->get('subscriptions')); //but this does not work
} catch (HttpClientException $e) {
echo $e->getMessage(); // Error message.
echo $e->getRequest(); // Last request data.
echo $e->getResponse(); // Last response data.
}
谁能帮我解决这个问题。谢谢你。