腾讯微博 的账号登录及api操作,使用oauth 2.0 官方提供的sdk都太过庞大,这是我自己简化的,提供简单的账号登录、获取个人信息、发布微博等功能,如果需要其他功能可以根据官方的api文档自行添加
tqq.php
<?php
/**
* PHP Library for t.qq.com
*
* @author PiscDong (http://www.piscdong.com/)
*/
class tqqPHP
{
function __construct($client_id, $client_secret, $access_token=NULL, $openid=NULL){
$this->client_id=$client_id;
$this->client_secret=$client_secret;
$this->access_token=$access_token;
$this->openid=$openid;
}
function login_url($callback_url){
$params=array(
'response_type'=>'code',
'client_id'=>$this->client_id,
'redirect_uri'=>$callback_url
);
return 'https://open.t.qq.com/cgi-bin/oauth2/authorize?'.http_build_query($params);
}
function access_token($callback_url, $code){
$params=array(
'grant_type'=>'authorization_code',
'code'=>$code,
'client_id'=>$this->client_id,
'client_secret'=>$this->client_secret,
'redirect_uri'=>$callback_url
);
$url='https://open.t.qq.com/cgi-bin/oauth2/access_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;
}
function access_token_refresh($refresh_token){
$params=array(
'grant_type'=>'refresh_token',
'refresh_token'=>$refresh_token,
'client_id'=>$this->client_id
);
$url='https://open.t.qq.com/cgi-bin/oauth2/access_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;
}
function me(){
$params=array();
$url='https://open.t.qq.com/api/user/info';
return $this->api($url, $params);
}
function getMyTweet($reqnum=10, $pageflag=0){
$params=array(
'pageflag'=>$pageflag,
'reqnum'=>$reqnum
);
$url='https://open.t.qq.com/api/statuses/broadcast_timeline';
return $this->api($url, $params);
}
function getRecount($ids){
$params=array(
'ids'=>$ids,
'flag'=>2
);
$url='https://open.t.qq.com/api/t/re_count';
return $this->api($url, $params);
}
function getReplay($id, $flag=0, $f=0, $n=10){
$params=array(
'rootid'=>$id,
'pageflag'=>$f,
'reqnum'=>$n,
'flag'=>$flag
);
$url='https://open.t.qq.com/api/t/re_list';
return $this->api($url, $params);
}
function postOne($img_c, $pic=''){
$params=array(
'content'=>$img_c
);
if($pic!='' && is_array($pic)){
$url='https://open.t.qq.com/api/t/add_pic';
$params['pic']=$pic;
}else{
$url='https://open.t.qq.com/api/t/add';
}
return $this->api($url, $params, 'POST');
}
function api($url, $params, $method='GET'){
$params['oauth_consumer_key']=$this->client_id;
$params['access_token']=$this->access_token;
$params['openid']=$this->openid;
$params['clientip']=$this->getIP();
$params['oauth_version']='2.a';
$params['format']='json';
$params['scope']='all';
if($method=='GET'){
$result_str=$this->http($url.'?'.http_build_query($params));
}else{
if(isset($params['pic'])){
uksort($params, 'strcmp');
$str_b=uniqid('------------------');
$str_m='--'.$str_b;
$str_e=$str_m. '--';
$body='';
foreach($params as $k=>$v){
if($k=='pic'){
if(is_array($v)){
$img_c=$v[2];
$img_n=$v[1];
}elseif($v{0}=='@'){
$url=ltrim($v, '@');
$img_c=file_get_contents($url);
$url_a=explode('?', basename($url));
$img_n=$url_a[0];
}
$body.=$str_m."\r\n";
$body.='Content-Disposition: form-data; name="'.$k.'"; filename="'.$img_n.'"'."\r\n";
$body.="Content-Type: image/unknown\r\n\r\n";
$body.=$img_c."\r\n";
}else{
$body.=$str_m."\r\n";
$body.='Content-Disposition: form-data; name="'.$k."\"\r\n\r\n";
$body.=$v."\r\n";
}
}
$body.=$str_e;
$headers[]="Content-Type: multipart/form-data; boundary=".$str_b;
$result_str=$this->http($url, $body, 'POST', $headers);
}else{
$result_str=$this->http($url, http_build_query($params), 'POST');
}
}
$json_r=array();
if($result_str!='')$json_r=json_decode($result_str, true);
return $json_r;
}
function getIP(){
if(isset($_ENV['HTTP_CLIENT_IP'])){
$ip=$_ENV['HTTP_CLIENT_IP'];
}elseif(isset($_ENV['HTTP_X_FORWARDED_FOR'])){
$ip=$_ENV['HTTP_X_FORWARDED_FOR'];
}elseif(isset($_ENV['REMOTE_ADDR'])){
$ip=$_ENV['REMOTE_ADDR'];
}else{
$ip=$_SERVER['REMOTE_ADDR'];
}
if(strstr($ip, ':')){
$ipa=explode(':', $ip);
foreach($ipa as $v){
if(strlen($v)>7)$ip=$v;
}
}
if(strlen($ip)<7)$ip='0.0.0.0';
return $ip;
}
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: tqqPHP(piscdong.com)";
curl_setopt($ci, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ci, CURLOPT_URL, $url);
$response=curl_exec($ci);
curl_close($ci);
return $response;
}
}
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号