woocommerce 订阅 API

woocommerce subscription API

我正在使用 Woocomemrce REST API 连接到我的网站。订单方面一切正常,但不适用于订阅。我已尝试使用以下代码来获得订阅,但它给出了 "Error: No route was found matching the URL and request method [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.
}

谁能帮我解决这个问题。谢谢。

我将其更改为以下对我有用的内容。

$woocommerce = new Client(
    'https://www.example.com',
    'ck_OUR_CONSUMER_KEY',
    'cs_OUR_CONSUMER_SECRET',
    [
        'wp_api' => true,
        'version' => 'wc/v1',
    ]
);