woocommerce / wc-api-ruby

A Ruby wrapper for the WooCommerce API.
MIT License
69 stars 73 forks source link

REST API Documentation refers to "wp_json" option instead of "wp_api", yielding confusing results. #56

Open innerfence opened 2 years ago

innerfence commented 2 years ago

In the REST API Documentation under Authentication over HTTPS, the sample code given for ruby is:

require "woocommerce_api"

woocommerce = WooCommerce::API.new(
  "https://example.com",
  "consumer_key",
  "consumer_secret",
  {
    wp_json: true,
    version: "wc/v3"
  }
)

When using this sample code, my attempts to access the index with woocommerce.get("") returned -1.

The problem seems to be that this code shows a non-existent wp_json option. The correct name of this option is wp_api.