当我们获取产品时,magento 中存在类似“无效的 auth/bad request (got a 403, expected HTTP/1.1 20X or a redirect)”的错误。我的代码如下。
$resourceUrl = "http://localhost/magento/api/rest/products";
$oauthClient->fetch($resourceUrl, array(), 'GET', array('Content-Type' => 'application/json'));
$productsList = json_decode($oauthClient->getLastResponse());
我通过这个 url 完成了用户认证
http://www.magentocommerce.com/api/rest/authentication/oauth_authentication.html。
请解决我的问题..