You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating credentials using the endpoint /wc-auth/v1/authorize with scope=read_write most times the consumer key and secret that I get are valid, but a couple of times I get consumer key or consumer secrets that are invalid when I try to use them later in code like this:
wcapi=API(
url=shop_url,
consumer_key=key,
consumer_secret=secret
)
response=wcapi.get("orders?page=1")
# Then response.text is {"errors":[{"code":"woocommerce_api_authentication_error","message":"Consumer Secret is invalid"}]}# or {"errors":[{"code":"woocommerce_api_authentication_error","message":"Consumer Key is invalid"}]}
Has this issue been detected yet? Is it related to the python wrapper or woocommerce plugin?