我正在尝试与Magento 1.7 API连接,但我收到此错误:
childForm.Show(this); //this is the parent form
这是我的代码:
Notice: Use of undefined constant OAUTH_AUTH_TYPE_URI - assumed 'OAUTH_AUTH_TYPE_URI'
我正在关注this guide
我尝试用作曲家安装oauth:
try {
$authType = ($_SESSION['state'] == 2) ? OAUTH_AUTH_TYPE_AUTHORIZATION : OAUTH_AUTH_TYPE_URI;
$oauthClient = new OAuth($consumerKey, $consumerSecret, OAUTH_SIG_METHOD_HMACSHA1, $authType);
$oauthClient->enableDebug();
}
我将OAuth添加到php.ini并重新启动Apache作为answer in this post
{
"require": {
"lusitanian/oauth": "1.0.*@dev"
}
}
但我仍然遇到同样的错误。
我该如何解决这个问题?