0

我正在使用此代码对 magento 上的用户进行身份验证是

$redirecturi = 'http://localhost/magento';
$temporaryCredentialsRequestUrl = "http://localhost/magento/oauth/initiate?oauth_callback=".$redirecturi;
$customerAuthorizationUrl = 'http://localhost/magento/oauth/authorize';
$accessTokenRequestUrl = 'http://localhost/magento/oauth/token';

$oauthClient = new OAuth($consumerkey, $consumersecret, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$oauthClient->enableDebug();

$requestToken = $oauthClient->getRequestToken($temporaryCredentialsRequestUrl);
header('Location: '.$customerAuthorizationUrl.'?oauth_token='.$requestToken['oauth_token']);
exit(0);

但它显示致命错误,例如“找不到类'OAuth'”。我使用此链接进行身份验证magento 身份验证。请查看此内容并回复答案。

谢谢..

4

1 回答 1

1

请检查您是否安装了 PHP 的 OAUth 扩展。见http://www.php.net/manual/en/oauth.installation.php

于 2013-02-06T14:27:37.693 回答