0

我在magento中使用了weibo oauth api来连接用户和微博。

但是现在微博坏了,它完全得到了令牌,但是当我们使用认证令牌检索用户数据时显示错误。错误如下..

我正在使用此代码,使用可以成功登录,但之后出现这样的错误

[error_code] => 401
[error] => 40109:consumer_key_refused!

我的代码是在这里登录后\

$c = new WeiboClient( WB_AKEY , WB_SKEY , $_SESSION['last_key']['oauth_token'] ,       $_SESSION['last_key']['oauth_token_secret'] );
    $ms  = $c->home_timeline(); 
    $me = $c->verify_credentials();
    $ms  = $c->show_user($userid);
4

2 回答 2

2

我发现微博新的oauth2.0身份验证api可以解决我的问题。如果有人在微博用户身份验证中有问题,请使用它。

Weibo-Oauth2 并遵循应用场景步骤。

要获取访问令牌,您需要使用表单 POST 方法而不是 GET。所以您使用此代码。

$opts = array('http' =>
            array(
                    'method'  => 'POST',
                    'header'  => "Content-Type: text/xml\r\n"                       
            )
    );

$context  = stream_context_create($opts);

$uri= 'https://api.weibo.com/oauth2/access_token?client_id='.WB_AKEY.'&client_secret='.WB_SKEY.'&grant_type=authorization_code&redirect_uri='.YOUR_REGISTERED_REDIRECT_URI.'&code='your authorization code;

$authkey1 = file_get_contents($uri,false,$context);

$decoded_auth1 = json_decode($authkey1,true);

并使用此 url 来获取验证用户数据..

$userinfo = file_get_contents("https://api.weibo.com/2/users/show.json?access_token=".$access_token."&uid=".$userid);
$decoded_userinfo = json_decode($userinfo, true);

希望这对任何人都有帮助..

于 2012-10-19T09:50:57.800 回答
0

使用weibo_2和 oauth2。请。

于 2012-09-20T09:10:57.470 回答