我正在尝试从我的laravel应用程序连接我的magento 2.0商店,当我从laravel到我的magento 2.0商店laravel进行OAuth调用时抛出错误类'OAuth'未找到。
OAuth安装在我的系统上,代码完全可以在侧面工作,但是当我将代码放在Laravel控制器内部时会抛出错误
以下是我使用laravel进行的OAuth调用代码
$oAuth = new OAuth($integratoinData->auth_data->consumer_key, $integratoinData->auth_data->consumer_secret, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_AUTHORIZATION);
$oAuth->setToken($integratoinData->auth_data->access_token, $integratoinData->auth_data->access_token_secret);
$oAuth->fetch($integrationCredentials['url']);
$responseInfo = $oAuth->getLastResponseInfo();
请提前帮助我谢谢
答案 0 :(得分:0)
在制作OAuth实例时尝试添加'\':
$oAuth = new \OAuth($integrato...