I found difficulty in fetching a product from my woocommerce website to my django app based on the sku.
In the official documentation here: http://woocommerce.github.io/woocommerce-rest-api-docs/#retrieve-a-product
i found a solution only for fetching the product knowing the post id(794 in the example),like:
print(wcapi.get("products/794").json())
Is there a way to catch the product based on the sku?