Discuz原本用的是http://qs.qlogo.cn/qsthirdbg/appid/openid/140 做头像接口,现在已经失效了,原因未知,但官网不管不问略不负责,做个301跳转提示下也好。
新的可用接口是:http://open.show.qq.com/cgi-bin/qs_open_snapshot?appid=appid&openid=openid
那么修改也很简单了:
找到/source/plugin/qqconnect
中的connect.class.php
文件:
找到:
1 |
return '<img width="120" src="http://qs.qlogo.cn/qsthirdbg/'.$_G['setting']['connectappid'].'/'.$openid.'/140" />'; |
修改为:
1 |
return '<img width="120" src="http://open.show.qq.com/cgi-bin/qs_open_snapshot?appid='.$_G['setting']['connectappid'].'&openid='.$openid.'" />'; |
这样就生效了