22 Star 61 Fork 38

祺爸 / QQ_PHP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
qq.php 3.44 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
PiscDong 提交于 2013-06-05 20:36 . update
<?php
/**
* QQ API client for PHP
*
* @author PiscDong (http://www.piscdong.com/)
*/
class qqPHP
{
public $api_url='https://graph.qq.com/';
public function __construct($appid, $appkey, $access_token=NULL){
$this->appid=$appid;
$this->appkey=$appkey;
$this->access_token=$access_token;
}
//生成授权网址
public function login_url($callback_url, $scope=''){
$params=array(
'client_id'=>$this->appid,
'redirect_uri'=>$callback_url,
'response_type'=>'code',
'scope'=>$scope
);
return 'https://graph.qq.com/oauth2.0/authorize?'.http_build_query($params);
}
//获取access token
public function access_token($callback_url, $code){
$params=array(
'grant_type'=>'authorization_code',
'client_id'=>$this->appid,
'client_secret'=>$this->appkey,
'code'=>$code,
'state'=>'',
'redirect_uri'=>$callback_url
);
$url='https://graph.qq.com/oauth2.0/token?'.http_build_query($params);
$result_str=$this->http($url);
$json_r=array();
if($result_str!='')parse_str($result_str, $json_r);
return $json_r;
}
/**
//使用refresh token获取新的access token,QQ暂时不支持
public function access_token_refresh($refresh_token){
}
**/
//获取登录用户的openid
public function get_openid(){
$params=array(
'access_token'=>$this->access_token
);
$url='https://graph.qq.com/oauth2.0/me?'.http_build_query($params);
$result_str=$this->http($url);
$json_r=array();
if($result_str!=''){
preg_match('/callback\(\s+(.*?)\s+\)/i', $result_str, $result_a);
$json_r=json_decode($result_a[1], true);
}
return $json_r;
}
//根据openid获取用户信息
public function get_user_info($openid){
$params=array(
'openid'=>$openid
);
return $this->api('user/get_user_info', $params);
}
//发布分享
public function add_share($openid, $title, $url, $site, $fromurl, $images='', $summary=''){
$params=array(
'openid'=>$openid,
'title'=>$title,
'url'=>$url,
'site'=>$site,
'fromurl'=>$fromurl,
'images'=>$images,
'summary'=>$summary
);
return $this->api('share/add_share', $params, 'POST');
}
//调用接口
/**
//示例:根据openid获取用户信息
$result=$qq->api('user/get_user_info', array('openid'=>$openid), 'GET');
**/
public function api($url, $params=array(), $method='GET'){
$url=$this->api_url.$url;
$params['access_token']=$this->access_token;
$params['oauth_consumer_key']=$this->appid;
$params['format']='json';
if($method=='GET'){
$result_str=$this->http($url.'?'.http_build_query($params));
}else{
$result_str=$this->http($url, http_build_query($params), 'POST');
}
$result=array();
if($result_str!='')$result=json_decode($result_str, true);
return $result;
}
//提交请求
private function http($url, $postfields='', $method='GET', $headers=array()){
$ci=curl_init();
curl_setopt($ci, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ci, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ci, CURLOPT_TIMEOUT, 30);
if($method=='POST'){
curl_setopt($ci, CURLOPT_POST, TRUE);
if($postfields!='')curl_setopt($ci, CURLOPT_POSTFIELDS, $postfields);
}
$headers[]='User-Agent: QQ.PHP(piscdong.com)';
curl_setopt($ci, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ci, CURLOPT_URL, $url);
$response=curl_exec($ci);
curl_close($ci);
return $response;
}
}
PHP
1
https://gitee.com/piscdong/qq_php.git
git@gitee.com:piscdong/qq_php.git
piscdong
qq_php
QQ_PHP
master

搜索帮助

14c37bed 8189591 565d56ea 8189591