WooCommerceNET 0.6.1
See the version list below for details.
dotnet add package WooCommerceNET --version 0.6.1
NuGet\Install-Package WooCommerceNET -Version 0.6.1
<PackageReference Include="WooCommerceNET" Version="0.6.1" />
paket add WooCommerceNET --version 0.6.1
#r "nuget: WooCommerceNET, 0.6.1"
// Install WooCommerceNET as a Cake Addin #addin nuget:?package=WooCommerceNET&version=0.6.1 // Install WooCommerceNET as a Cake Tool #tool nuget:?package=WooCommerceNET&version=0.6.1
A .NET Wrapper for WooCommerce REST API
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on WooCommerceNET:
Package | Downloads |
---|---|
QuickerDrivingTest-ClassLibrary
Package Description |
|
fm.WooCommerceNET.Subscriptions
Extends WooCommerceNET with support for retrieving WooCommerce Subscriptions for a user. |
|
NineDigit.WooCommerce
WooCommerce API client. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.8.6 | 474,451 | 3/29/2023 |
0.8.5 | 21,886 | 1/4/2023 |
0.8.4 | 100,910 | 11/20/2021 |
0.8.3 | 68,235 | 3/17/2021 |
0.8.2 | 121,062 | 4/28/2020 |
0.8.1 | 7,179 | 3/4/2020 |
0.8.0 | 12,098 | 11/4/2019 |
0.7.9 | 3,562 | 9/29/2019 |
0.7.8 | 7,802 | 7/30/2019 |
0.7.7 | 6,480 | 4/2/2019 |
0.7.6-beta | 1,200 | 11/19/2018 |
0.7.5 | 5,984 | 6/9/2018 |
0.7.4 | 3,168 | 1/25/2018 |
0.7.3 | 16,945 | 1/7/2018 |
0.7.2 | 4,481 | 7/22/2017 |
0.7.1 | 7,094 | 5/20/2017 |
0.7.0 | 1,550 | 5/17/2017 |
0.6.1 | 5,782 | 12/15/2016 |
0.5.6-beta | 1,383 | 11/6/2016 |
0.5.5 | 2,196 | 10/22/2016 |
0.5.3-beta | 1,345 | 9/27/2016 |
0.5.2 | 2,006 | 9/23/2016 |
0.4.3 | 2,128 | 5/13/2016 |
0.4.1 | 2,021 | 4/14/2016 |
WooCommerce.NET is a .NET library for calling WooCommerce REST API in any .NET applications.
GitHub: https://github.com/XiaoFaye/WooCommerce.NET
Changes Doc: https://github.com/XiaoFaye/WooCommerce.NET/blob/master/Changes.md
PS: Sorry that I have published the wrong dll in version 0.6.0, have to create version 0.6.1 with the correct dll.
* v0.6.1 Minor update
1. Add generic WCObject which allows you to use customize object class.
2. Use generic batch update object.
3. Add jsonSerializeFilter and jsonDeserializeFilter parameters in RestAPI, which allows you to manipulate the json string. What we have found is that in some server, the json string from WooCommerce has a byte order mark (BOM) and can't be deserlized.
4. Add authorizedHeader parameter in RestAPI, which allows you to choose how to pass the Credentials. What we have found is that in some server, these information can't be pass in request header.
5. Add webRequestFilter in RestAPI, which allows you to modify the HttpWebRequest object.
6. Add HttpWebRequestExtensions for setting restricted Headers.
7. Only set Content Type when this is a request body.
8. Use InvariantCulture in decimal.Parse to prevent deserlized error.
9. Fix GetCustomerByEmail not working issue.
10. Change data type of dimensions from List<Dimension> to Dimension in Product.cs