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

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

woocommerce - Woocommerece - HttpClientException: Error: No route was found matching the URL and request method

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...