Blog / 阅读

thinkphp3.2下使用thinksdk报错

by admin on 2015-06-12 13:37:05 in ,



最近用 thinkphp 写个东西,用了这个类库,发现版本很老了。thinkphp 3.2 最新版无法使用。

最后发现是命名空间的问题,只需对照下面修改下即可使用。


ThinkOauth.class.php顶部

 namespace Org\ThinkSDK;
 abstract class ThinkOauth{
         . . . . .      
    }
ThinkOauth.class.php 批量替换 throw new Exception 替换为 E 即可。

use Org\ThinkSDK\ThinkOauth;      //这里只是拿QQ做个示范,你要用哪个接口就要改哪个文件。 最好是批量都加上
 class QqSDK extends ThinkOauth{
       . . . . . . 
 }


使用demo
 namespace Home\Controller;
 use Org\ThinkSDK\ThinkOauth;
 class IndexController extends CommonController
 {
    public function login($type = null)
    {
        empty($type) && $this->error('参数错误');
        $sns = ThinkOauth::getInstance($type);
        redirect($sns->getRequestCodeURL());
    }
    //授权回调地址
    public function callback($type = null, $code = null)
    {
        (empty($type) || empty($code)) && $this->error('参数错误');
        $sns = ThinkOauth::getInstance($type);
        //腾讯微博需传递的额外参数
        $extend = null;
        if ($type == 'tencent') {
            $extend = array('openid' => $this->_get('openid'), 'openkey' => $this->_get('openkey'));
        }
        $token = $sns->getAccessToken($code, $extend);
      //自己写  . . . . .  .
 }


写评论

相关文章

上一篇:彻底解决dl-ssl.google.com访问错误导致SDK Manager无法下载android问题

评论

写评论

* 必填.

分享

栏目

赞助商


热门文章

Tag 云