免登录 只需要一个QQ号就能获取QQ头像和QQ昵称 获取QQ用户信息API!今天分享几个php获取QQ头像及昵称的php案例源码
1、获取QQ头像和昵称php代码案例
2、获取QQ头像php代码案例
<?php
if ($_GET['qq']) {
$qq = $_GET['qq'];
/*===================================
plugins:QQ头像获取
名称: 领酷网络 (www.ilingku.com)
作者: 若尘阿凯 QQ:15159323
====================================*/
$src='http://q1.qlogo.cn/g?b=qq&nk='.$qq.'&s=100&t='.time();
header('Content-type: image/png');
$res=imagecreatefromstring(file_get_contents($src));
imagepng($res);
imagedestroy($res);
}else{
$arr = array('code' => -1,'msg' => 'Error');
exit(stripslashes(urldecode(json_encode($arr))));
}
?>
3、其他QQ官方接口
QQ头像官方api接口
https://ptlogin2.qq.com/getface?appid=1006102&imgtype=3&uin=QQ号码
QQ头像官方高清接口
1、http://q.qlogo.cn/headimg_dl?dst_uin=QQ号码&spec=640&img_type=jpg
2、https://q1.qlogo.cn/g?b=qq&nk=QQ号码&s=100
这里s=100
和spec=100
是头像像素尺寸的大小参数:
spec参数 | 输出px大小 |
---|---|
1 | 40 x 40 |
2 | 40 x 40 |
3 | 100 x100 |
4 | 140 x140 |
5 | 640 x 640 |
40 | 40 x 40 |
100 | 100 x100 |
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)