martinlmedina
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] REST API HTTP Authentication problemthe documentation is wrong; since the base string used to generate the signature is incomplete.
1-Correct base string
GET&http%3A%2F%2Fwww.example.com%2Fwc-api%2Fv2%2Fproducts&oauth_consumer_key%3D[API keys redacted]%26oauth_nonce%3Dyxakolfnjdyfnhtcqtfyeeepypjspzhj%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1469829703
2-Correct URL
http://www.example.com/wc-api/v2/products?oauth_consumer_key=abcd1234&oauth_timestamp=1469829703&oauth_nonce=yxakolfnjdyfnhtcqtfyeeepypjspzhj&oauth_signature_method=HMAC-SHA1&oauth_signature=%5BBase64 and Percent encode base string]
Thks
.
Forum: Plugins
In reply to: [WooCommerce] REST API HTTP Authentication problemCaleb I have not tried the official libraries; I’ve only tested via http.
I’m developing a plsql to WooCommerce integration.
We would greatly appreciate if you can help with this.Forum: Plugins
In reply to: [WooCommerce] REST API HTTP Authentication problemI also took additional notes.
As you can see in the URL; The parameters are in alphabetical order.oauth_consumer_key=[API keys redacted]
oauth_nonce=9062660784657346
oauth_signature=[API keys redacted]
oauth_signature_method=HMAC-SHA1
oauth_timestamp=1439148955Forum: Plugins
In reply to: [WooCommerce] REST API HTTP Authentication problemCaleb thanks for the advice, but it is a test environment.
I’m trying to authenticate to access via http api rest, to list products, create products etc.
I followed step by step tutorial instructions but have not been successful.
So i show all of the information necessary to access, to see if anyone knows’m making mistake.