Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am using woocommerce rest api to get orders. It throws error.

WooCommerce version: 4.8.0 WordPress version: 5.4.4

PHP Fatal error: Uncaught AutomatticWooCommerceHttpClientHttpClientException: Error: No route was found matching the URL and request method

Here is my code to get the orders.

$woocommerce = new Client(
'https://example.com', // Your store URL
'xxx', // Your consumer key
'xxx', // Your consumer secret
[
    'wp_api' => true, // Enable the WP REST API integration
    'version' => 'wc/v3',
    'query_string_auth' => true
]
);

$woodata = $woocommerce->get('orders/' . $_REQUEST["ordno"]);
question from:https://stackoverflow.com/questions/65640743/woocommerece-httpclientexception-error-no-route-was-found-matching-the-url-a

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...