wc-api-java icon indicating copy to clipboard operation
wc-api-java copied to clipboard

Java wrapper for WooCommerce REST API

Results 32 wc-api-java issues
Sort by recently updated
recently updated
newest added

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

I haven't touched oAuth1.0a before, I used the correct secret key and secret in the apiGetAllProductsTest method in the test unit, and the request returns: 'java.lang.RuntimeException: Can't parse retrieved object:...

That was super annoying when forgetting that only URL without "/" ending is acceptable. Now it can work with both.

Hi sir, Here is my scenarios. I have store application developed in .NET framewok, I would like to have a webservice to update woocommerce store when a store sales sysnchronise...

I am trying to update product prices but i got "HttpResponseProxy{HTTP/1.1 400 Bad Request [Date: Sat, 06 Jun 2020 21:40:45 GMT" HttpResponse and got result from mapper.readValue is "{errors=[{code=woocommerce_api_missing_product_data, message=No...

``` Map productInfo = new HashMap(); productInfo.put("id", t1.getId()); productInfo.put("name", p1.getName()); productInfo.put("regular_price", String.valueOf(price1)); //image productInfo.put("sku",p1.getBarcode()); productInfo.put("description", p1.getDescription()); Map product= wooCommerce.update(EndpointBaseType.PRODUCTS.getValue(),t1.getId(), productInfo); System.out.println(product.get("id")); ``` it is not working while everything in debugger...

while creating a product we make a map. which works fine for simple attributes, but is not working for object type attributes. ``` dimensions.setLength("1"); dimensions.setWidth("1"); dimensions.setHeight("1"); Gson gson = new...

Hi @icoderman, first of all, thanks for your job. Really appreciate it! As from the title i'm trying to apply coupon in an order but seems compatible only with version...

¿Its posible configure the client to ignore the SSL Context Verification?

Object resultado = wooCommerce.getAll(EndpointBaseType.PRODUCTS.getValue(), integracao.getUrl()); @Override @SuppressWarnings("all") public List getAll(String endpointBase, String urlHost) { Integer OAUTH_PAGE = 1; String privado = "private" , publico="publish", concluido ="completed",pendente="pending", cancelado="cancelled",aguardando ="on-hold" ; List...