“ERROR_MESSAGE”:“对不起,您无法列出资源。”使用WooCommerce API

时间:2019-04-22 作者:Dyna Rizki Habibah

请求测试API时,得到以下响应:

{
    "errors": [
        {
            "error_code": "",
            "error_message": "Sorry, you cannot list resources."
        }
    ]
}
凭据正常,REST API密钥具有读/写权限。我尝试使用新生成的API密钥,同样的问题。

1 个回复
SO网友:james007

给你

原件.htaccess 看起来像这样:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
然后我将其更改为以下内容

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

RewriteBase /
RewriteRule ^index\\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
现在它工作了!!!