我需要使用PHP从WooCommerce REST API获取税款。我使用的是 API版本2 。
这是我尝试过的功能:
$client->taxes->get(null, array( 'filter[limit]'=>100000 ))
但它没有得到任何结果。它给出了这个错误:
"No route was found matching the URL and request method
[woocommerce_api_no_route] 404"
尝试了一切并在各处搜索,但可以找到任何解决方案。
这样的API文档中给出了一个例子,但是我找不到相关的PHP代码。
我该如何解决这个问题?
由于