I'm encountering an issue with the "WooCommerceNET" library in C# while interacting with the WooCommerce API.
I've successfully set up the credentials, but when making a request (e.g., products.GetAll()), I receive the following exception:
This excepcion message y raised when executing this line:
List list = await wc.Product.GetAll(new Dictionary<string, string>() { { "page", $"{page}" } });
Wordpress version: 6.3 WooCommerce version: 8.3.1 WooCommerce.Net version: 0.8.6
I'm encountering an issue with the "WooCommerceNET" library in C# while interacting with the WooCommerce API. I've successfully set up the credentials, but when making a request (e.g., products.GetAll()), I receive the following exception:
This excepcion message y raised when executing this line: List list = await wc.Product.GetAll(new Dictionary<string, string>() { { "page", $"{page}" } });
Any idea?