このクラスは何に使用できますか?
QQユーザー認証認証ログイン
ユーザー情報を取得
共有を追加
アルバムリストを取得
アルバムを作成
写真をアップロード
ログを投稿
トークを投稿
Weiboを投稿
かどうかを確認認定スペース ファン
Weiboに写真メッセージを送信
Weiboのユーザー情報を取得
ユーザーのリスナーリストを取得
ユーザーのリスニングリストを取得
Tencent Weiboでユーザーの声を聞く
获取财付通用户の收货地址
- /**
- *
- * QQ オープン プラットフォーム API
- * @author maojianlw@139.com
- * @since 2013-06-20
- * @link http://www.eaglephp.com
- *
- */
- class QQ
- {
-
- private $appid = null;
-
- private $appkey = null;
-
- private $callbcak = null;
-
- private $APIMap = array();
-
- private $keysArr = array();
-
- const VERSION = '2.0';
-
- const AUTH_CODE_URL = 'https://graph.qq.com/oauth2.0/authorize';
-
- const ACCESS_TOKEN_URL = 'https://graph.qq.com/oauth2.0/token';
-
- const OPENID_URL = 'https://graph.qq.com/oauth2.0/me';
-
- const SCOPE = 'get_user_info,add_share,list_album,add_album,upload_pic,add_topic,add_one_blog,add_weibo,check_page_fans,add_t,add_pic_t,del_t,get_repost_list,get_info,get_other_info,get_fanslist,get_idolist,add_idol,del_idol,get_tenpay_addr';
-
-
-
- パブリック関数 __construct ($appid, $appkey, $callbcak)
- {
- $this->appid = $appid;
- $this->gt;appkey = $appkey;
- $this->callbcak = $callbcak;
- }
-
-
- /**
- * ログイン
- */
- public function login()
- {
- $state = md5(uniqid(rand(), true)); // 唯一生成随机串防CSRF攻撃击
- Session::set('state', $state);
- $keysArr = array(
- 'response_type' => 'code',
- 'client_id' => $this- >appid,
- 'redirect_uri' => $this->callbcak,
- 'scope' => self::SCOPE,
- 'state' => $state
- );
- header('Location:' self::AUTH_CODE_URL.'?'.http_build_query($keysArr));
- }
-
-
- /**
- *
- * コールバック関数は access_token と open_id を返します
- *
- */
- public function callback()
- {
- $state = Session::get('state') ;
-
- // 验证state CSRF 攻撃を阻止します
- if(HttpRequest::getGet('state') != $state) throw_Exception('状態が一致しません。CSRF の被害者である可能性があります。');
- セッション: :set('state', null);
-
- $keysArr = array(
- 'grant_type' => 'authorization_code',
- 'client_id' => $this->appid,
- 'redirect_uri' => $ this->callbcak,
- 'client_secret' => $this->appkey,
- 'code' => HttpRequest::getGet('code')
- );
-
- $response =curlRequest(self::ACCESS_TOKEN_URL) .'?'.http_build_query($keysArr));
- if(strpos($response, 'callback') !== false)
- {
- $lpos = strpos($response, '(');
- $rpos = strrpos ($response, ')');
- $response = substr($response, $lpos + 1, $rpos - $lpos -1);
- $msg = json_decode($response);
- if(isset($msg- >error)) throw_Exception($msg->error.' '.$msg->error_description);
- }
-
- $params = array();
- parse_str($response, $params);
- セッション:: set('access_token', $params['access_token']);
-
- // 根元token请要求获取openid
- $response =curlRequest(self::OPENID_URL.'?access_token='.$params['access_token']);
-
- if(strpos($response, 'callback') !== false){
-
- $lpos = strpos($response, '(');
- $rpos = strrpos($response, ')');
- $ response = substr($response, $lpos + 1, $rpos - $lpos -1);
- }
-
- $user = json_decode($response);
- if(isset($user->error)) throw_Exception($ msg->error.' '.$msg->error_description);
- Session::set('open_id', $user->openid);
- return array('access_token' => $params['access_token'], 'open_id' => $user->openid);
- }
-
-
- /**
- *
- * 初期化データ
- *
- */
- 保護関数 _initAPI()
- {
- $this->keysArr = array(
- 'oauth_consumer_key' => (int)$this->appid,
- 'access_token' => セッション::get('access_token'),
- 'openid' => セッション::get('open_id')
- );
-
- /**
- *
- * APIMap を初期化します
- * 必要ないことを示すには # を追加します。それ以外の場合、URL は渡されません (このパラメーターは URL に表示されません)。 'key' => 'val' は、キーがが定義されていない場合、デフォルト値 val が使用されます
- * ルール配列(baseUrl, argListArr, Method)
- *
- * @var array
- */
-
- $this->APIMap = array(
- /* qzone */
- 'add_blog' => array(
- 'https://graph.qq.com/blog/add_one_blog',
- array('title', 'format' => 'json ', 'content' => null),
- 'POST'
- ),
- 'add_topic' => array(
- 'https://graph.qq.com/shuoshuo/add_topic',
- array('richtype' ,'richval','con','#lbs_nm','#lbs_x','#lbs_y','format' => 'json', '#third_source'),
- 'POST'
- ),
- 'get_user_info ' => array(
- 'https://graph.qq.com/user/get_user_info',
- array('format' => 'json'),
- 'GET'
- ),
- 'add_one_blog' => ; array(
- 'https://graph.qq.com/blog/add_one_blog',
- array('title', 'content', 'format' => 'json'),
- 'GET'
- ),
- ' add_album' => array(
- 'https://graph.qq.com/photo/add_album',
- array('albumname', '#albumdesc', '#priv', 'format' => 'json'),
- 'POST '
- ),
- 'upload_pic' => array(
- 'https://graph.qq.com/photo/upload_pic',
- array('picture', '#photodesc', '#title', '#albumid', '#mobile', '#x' , '#y', '#needfeed', '#successnum', '#picnum', 'format' => 'json'),
- 'POST'
- ),
- 'list_album' => array(
- 'https://graph.qq.com/photo/list_album',
- array('format' => 'json')
- ),
- 'add_share' => array(
- 'https://graph.qq.com/share/add_share',
- array('title', 'url', '#comment','#summary','#images','format' => ; 'json','#type','#playurl','#nswb','site','fromurl'),
- 'POST'
- ),
- 'check_page_fans' => array(
- 'https://graph.qq.com/user/check_page_fans',
- array('page_id' => '314416946','format' => 'json')
- ),
- /* wblog * /
-
- 'add_t' => array(
- 'https://graph.qq.com/t/add_t',
- array('format' => 'json', 'content','#clientip','#longitude','#compatibilityflag' ),
- 'POST'
- ),
- 'add_pic_t' => array(
- 'https://graph.qq.com/t/add_pic_t',
- array('content', 'pic', 'format' => 'json', '#clientip', '#longitude', '#latitude', '#syncflag', '#compatibilityfalg'),
- 'POST'
- ),
- 'del_t' => array(
- 'https://graph.qq.com/t/del_t',
- array('id', 'format' => 'json'),
- 'POST'
- ),
- 'get_repost_list' => ; array(
- 'https://graph.qq.com/t/get_repost_list',
- array('flag', 'rootid', 'pageflag', 'pagetime', 'reqnum', 'twitterid', 'format' = > 'json')
- ),
- 'get_info' => array(
- 'https://graph.qq.com/user/get_info',
- array('format' => 'json')
- ),
- 'get_other_info' => array(
- 'https://graph.qq.com/user/get_other_info',
- array('format' => 'json', '#name', 'fopenid')
- ),
- 'get_fanslist' => ; array(
- 'https://graph.qq.com/relation/get_fanslist',
- array('format' => 'json', 'reqnum', 'startindex', '#mode', '#install', '#sex')
- ),
- 'get_idollist' => array(
- 'https://graph.qq.com/relation/get_idollist',
- array('format' => 'json', 'reqnum', 'startindex', '#mode', '#install')
- ),
- 'add_idol' => array(
- 'https://graph.qq.com/relation/add_idol',
- array('format' => 'json', '#name-1', '#fopenids-1'),
- 'POST'
- ),
- 'del_idol' => array(
- 'https://graph.qq.com/relation/del_idol',
- array('format' => 'json', '#name-1', '#fopenid-1'),
- 'POST '
- ),
- /* 支払い */
-
- 'get_tenpay_addr' => array(
- 'https://graph.qq.com/cft_info/get_tenpay_addr',
- array('ver' => 1,'limit' => 5,'offset' => 0,'format' = > 'json')
- )
- );
- }
-
-
- 保護された関数 _applyAPI($baseUrl, $argsList, $method)
- {
- $params = HttpRequest::getPost();
- $optionArgList = '';
- $keysArr = $this->keysArr;
- $pre = '#';
- foreach ($argsList as $k=>$v)
- {
- if(!is_string($k))
- {
- $k = $v;
- if(strpos($v, $pre) === 0)
- {
- $v = $pre;
- $k = substr($k, 1);
- if(preg_match('/-(d $)/', $k, $matchs))
- {
- $k = str_replace($matchs[0], '', $k);
- $optionArgList[$matchs[1]][] = $k;
- }
- }
- else $v = null;
- }
- if(!isset($params[$k]) || $params[$k] === '')
- {
- if($v == $pre ) 続行;
- elseif($v) $params[$k] = $v;
- else
- {
- if(isset($_FILES[$k]) && $_FILES[$k]['name']!=' ')
- {
- $uploadDir = getUploadAddr().'QQ'.__DS__;
- mk_dir($uploadDir);
- $uploadObj = new Upload();
- $fileInfo = $uploadObj->uploadOne($_FILES[$k ], $uploadDir);
- $img = $uploadDir.$fileInfo[0]['savename'];
- $params[$k] = "@{$img}";
- }
- else throw_Exception("param {$ k} 値を渡しません。");
- }
- }
- $keysArr[$k] = $params[$k];
- }
-
- // 查选充填パラメータ必須充填一の状況
- $i = 0;
- if(isset($optionArgList[1]))
- {
- foreach ($optionArgList[1] as $k=>$ v) if(array_key_exists($v, $keysArr)) $i++;
- if(!$i) throw_Exception('QQ_api_param_error,['.implode(',', $optionArgList[1]).'] には 1 つの値が必要です.');
- }
-
- $baseUrl .= ($method == 'GET') ? '?'.http_build_query($keysArr) : '';
- $response =curlRequest($baseUrl, $keysArr, $method);
- return json_decode($response, true);
- }
-
-
- public function __call($name) , $args)
- {
- $this->_initAPI();
- if(!array_key_exists($name, $this->APIMap)) throw_Exception("QQ_api_{$name} が存在しません。");
-
- / /从APIMap获取api相应パラメータ
- $baseUrl = $this->APIMap[$name][0];
- $argsList = $this->APIMap[$name][1];
- $method = isset($ this->APIMap[$name][2]) ? $this->APIMap[$name][2] : 'GET';
-
- $responseArr = $this->_applyAPI($baseUrl, $argsList, $method);
-
- //检查戻り判断api かどうか成功调用
- if($responseArr['ret'] == 0) return $responseArr;
- else throw_Exception('QQ_API_'.$name.' [ret:'.$responseArr['ret'].'] [errcode: '.$responseArr['errcode'].'] '.$responseArr['msg']);
- }
-
-
- }
-
复制代码
|