Authentication
HonoCommerce uses WooCommerce-compatible authentication with consumer key and secret pairs.
API Keys
Section titled “API Keys”Authentication uses consumer_key and consumer_secret query parameters or HTTP Basic auth, matching the WooCommerce REST API standard.
Query Parameters
Section titled “Query Parameters”curl "http://localhost:3000/wp-json/wc/v3/products?consumer_key=ck_xxx&consumer_secret=cs_xxx"HTTP Basic Auth
Section titled “HTTP Basic Auth”curl -u "ck_xxx:cs_xxx" http://localhost:3000/wp-json/wc/v3/productsPermissions
Section titled “Permissions”API keys have read, write, or read/write permissions — identical to WooCommerce’s permission model.