2016-11-25 74 views
1

當我在同一瀏覽器中登錄Wordpress時,WooCommerce REST API身份驗證失敗。登錄後WooCommerce REST API身份驗證失敗

註銷 - 一切正常

登錄 - 與此錯誤:

{"code":"woocommerce_rest_cannot_view","message":"Sorry, you cannot view this resource.","data":{"status":401}} 

也是一樣的Ajax:

jQuery.ajax({ 
    url:'https://example.com/wp-json/wc/v1/products/30552?consumer_key=ck_xxx&consumer_secret=cs_xxx', 
    success:function(d){window.d = d;} 
}); 

,並試圖在直接訪問同一個網址中瀏覽器。

什麼可能導致這種情況?

我想不出任何有用的理由。

回答