Java实现QQ授权登录网站

news/2024/11/20 4:19:28/

现在的很多网站 为了让用户可以快速登录 使用第三方QQ、微信、微博之类的授权登录     QQ互联的官网地址

1:先去QQ互联申请成为开发者

当审核通过之后  就可以创建一个应用 然后开发实际的登录效果啦

2:直接上QQ授权登录的代码

package com.xinjue.web;import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;
import java.util.UUID;import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;import com.xinjue.common.Globals;
import com.xinjue.meta.Users;
import com.xinjue.service.UsersService;
import com.qq.connect.QQConnectException;
import com.qq.connect.api.OpenID;
import com.qq.connect.api.qzone.UserInfo;
import com.qq.connect.javabeans.AccessToken;
import com.qq.connect.javabeans.qzone.UserInfoBean;
import com.qq.connect.oauth.Oauth;@Controller
public class QQloginController extends BaseController{@Resource UsersService usersService;@RequestMapping(value = "/qqlogin", method = RequestMethod.GET)public void qqlogin(ModelMap model, HttpServletRequest request,HttpServletResponse response) throws IOException {//Object demo_access_token = request.getSession().getAttribute("demo_access_token");//if(demo_access_token == null){try {response.sendRedirect(new Oauth().getAuthorizeURL(request));} catch (QQConnectException e) {e.printStackTrace();}//}else{//response.sendRedirect("test");//}//return "qqlogin";}/*** 请求跳转到QQ登录授权* @param model* @param request* @param response* @throws IOException*/@RequestMapping(value = "/get_qqlogin", method = RequestMethod.POST)public void get_qqlogin(ModelMap model, HttpServletRequest request,HttpServletResponse response) throws IOException {response.setContentType("text/html;charset=utf-8");String msg = "";try {//response.sendRedirect(new Oauth().getAuthorizeURL(request));msg = new Oauth().getAuthorizeURL(request);} catch (QQConnectException e) {e.printStackTrace();}response.getWriter().write(msg);}/*** QQ授权登录回调地址* @param model* @param request* @param response* @throws IOException* @throws InterruptedException */@RequestMapping(value = "/qqlogin_data", method = RequestMethod.GET)public void qqlogin_data(ModelMap model, HttpServletRequest request,HttpServletResponse response) throws IOException, InterruptedException {response.setContentType("text/html; charset=utf-8");System.out.println("code: "+request.getParameter("code"));System.out.println("state: "+request.getParameter("state"));//System.out.println("usercancel: "+request.getParameter("usercancel"));用户取消授权  这个值为非零PrintWriter out = response.getWriter();try {AccessToken accessTokenObj = (new Oauth()).getAccessTokenByRequest(request);String accessToken   = null,openID        = null;long tokenExpireIn = 0L;if (accessTokenObj.getAccessToken().equals("")) {
//                我们的网站被CSRF攻击了或者用户取消了授权
//                做一些数据统计工作System.out.print("没有获取到响应参数");} else {accessToken = accessTokenObj.getAccessToken();tokenExpireIn = accessTokenObj.getExpireIn();request.getSession().setAttribute("demo_access_token", accessToken);request.getSession().setAttribute("demo_token_expirein", String.valueOf(tokenExpireIn));// 利用获取到的accessToken 去获取当前用的openid -------- startOpenID openIDObj =  new OpenID(accessToken);openID = openIDObj.getUserOpenID();out.println("欢迎你,代号为 " + openID + " 的用户!");request.getSession().setAttribute("demo_openid", openID);System.out.println("openid: "+request.getSession().getAttribute("demo_openid"));// 利用获取到的accessToken 去获取当前用户的openid --------- endout.println("<p> start -----------------------------------利用获取到的accessToken,openid 去获取用户在Qzone的昵称等信息 ---------------------------- start </p>");UserInfo qzoneUserInfo = new UserInfo(accessToken, openID);UserInfoBean userInfoBean = qzoneUserInfo.getUserInfo();out.println("<br/>");if (userInfoBean.getRet() == 0) {//"XJ_qq";//"XJ_wx";out.println("用户昵称:"+userInfoBean.getNickname() + "<br/>");out.println("性别:"+userInfoBean.getGender() + "<br/>");/* out.println("黄钻等级: " + userInfoBean.getLevel() + "<br/>");out.println("会员 : " + userInfoBean.isVip() + "<br/>");out.println("黄钻会员: " + userInfoBean.isYellowYearVip() + "<br/>");out.println("<image src=" + userInfoBean.getAvatar().getAvatarURL30() + "><br/>");out.println("<image src=" + userInfoBean.getAvatar().getAvatarURL50() + "><br/>");//没有替换之前是QQ空间的头像图片地址out.println("<image src=" + userInfoBean.getAvatar().getAvatarURL100().replace("qzapp.qlogo.cn", "thirdqq.qlogo.cn").replace("qzapp", "qqapp") + "><br/>");//"http://thirdqq.qlogo.cn/qqapp/101483567/8AD0B25EA6EFF86F0D77B707DBEB1961/100"  QQ头像地址// http://qzapp.qlogo.cn/qzapp/101483567/8AD0B25EA6EFF86F0D77B707DBEB1961/30   QQ空间头像地址* */    String imageUrl = userInfoBean.getAvatar().getAvatarURL100().replace("qzapp.qlogo.cn", "thirdqq.qlogo.cn").replace("qzapp", "qqapp");String uuid = UUID.randomUUID().toString();String openid ="qq_"+openID;Users users = new Users();users = usersService.selectByQqOpenId(openid);if( users != null){ //已存在 if(users.getFrozenStatus() == 1){//跳转// out.println("您的账户已被冻结,无法继续操作,3秒之后自动跳转到网站首页");// Thread.sleep(3000);response.sendRedirect("qqlogin_n");return; }else{request.getSession().setAttribute(Globals.SSESION_USER, users);logingLog(request,users.getUserId()); }}else{users = new Users();users.setQqOpenid(openid);users.setNickName("XJ_qq"+uuid.split("-")[4]);users.setImageUrl(imageUrl);users.setSex(userInfoBean.getGender());users.setType(0);users.setLoginType(1);第三方登录微信2  QQ为1  h5为3users.setAddtime(new Date());users.setIp(getClientIpAddr(request));usersService.insertUser(users);logingLog(request,users.getUserId());request.getSession().setAttribute(Globals.SSESION_USER, users); }}else {response.getWriter().write(userInfoBean.getMsg());out.println("很抱歉,我们没能正确获取到您的信息,原因是: " + userInfoBean.getMsg());return;}response.sendRedirect("index");}} catch (QQConnectException e) {e.printStackTrace();}// return "index";}//判断openid是否存在。// 如果openid存在,则说明此用户之前登录过或者已与本地user表中的用户绑定。写入cookie,使用户为登录状态,到此结束。//如果用户openid不存在,则判断用户名是否存在。//如果用户名不存在,则直接生成新的本地用户,并绑定uid与openid。写入cookie,使用户为登录状态,到此结束。//如果用户名存在,提醒用户是否验证并与之绑定。如果用户选择验证,并验证通过,则与之绑定。写入cookie,使用户为登录状态,到此结束。//如果用户放弃验证,或者验证失败,则生成新的本地用户,并生成新的用户名,绑定uid与openid。写入cookie,使用户为登录状态,到此结束。/*** 通过前端JS保存QQ登录成功用户信息* @param model* @param request* @param response* @throws IOException*/@RequestMapping(value = "/save_qqlogindata", method = RequestMethod.POST)public void save_qqlogindata(ModelMap model, HttpServletRequest request,HttpServletResponse response) throws IOException {response.setContentType("text/html; charset=utf-8");String nickname = request.getParameter("nickname"); //用户名String openid = request.getParameter("openid"); // 用户身份的唯一标识。建议保存在本地,以便用户下次登录时可对应到其之前的身份信息,不需要重新授权。String figureurl_qq_1 = request.getParameter("figureurl_qq_1"); //用户的头像 这个地址是一定存在的String token = request.getParameter("token"); //表示当前用户在此网站/应用的登录状态与授权信息,建议保存在本地。response.getWriter().write(nickname+","+Globals.SUCCESS);}
}

 3:还需要配置一个文件

app_ID = 你的APPID
app_KEY = 你的APPID秘钥
redirect_URI = http\://www.xinjue.com\:8080/qqlogin_data     这个地方是你的回调地址scope = get_user_info,add_topic,add_one_blog,add_album,upload_pic,list_album,add_share,check_page_fans,add_t,add_pic_t,del_t,get_repost_list,get_info,get_other_info,get_fanslist,get_idollist,add_idol,del_ido,get_tenpay_addr
baseURL = https://graph.qq.com/
getUserInfoURL = https://graph.qq.com/user/get_user_info
accessTokenURL = https://graph.qq.com/oauth2.0/token
authorizeURL = https://graph.qq.com/oauth2.0/authorize
getOpenIDURL = https://graph.qq.com/oauth2.0/me
addTopicURL = https://graph.qq.com/shuoshuo/add_topic
addBlogURL = https://graph.qq.com/blog/add_one_blog
addAlbumURL = https://graph.qq.com/photo/add_album
uploadPicURL = https://graph.qq.com/photo/upload_pic
listAlbumURL = https://graph.qq.com/photo/list_album
addShareURL = https://graph.qq.com/share/add_share
checkPageFansURL = https://graph.qq.com/user/check_page_fans
addTURL = https://graph.qq.com/t/add_t
addPicTURL = https://graph.qq.com/t/add_pic_t
delTURL = https://graph.qq.com/t/del_t
getWeiboUserInfoURL = https://graph.qq.com/user/get_info
getWeiboOtherUserInfoURL = https://graph.qq.com/user/get_other_info
getFansListURL = https://graph.qq.com/relation/get_fanslist
getIdolsListURL = https://graph.qq.com/relation/get_idollist
addIdolURL = https://graph.qq.com/relation/add_idol
delIdolURL = https://graph.qq.com/relation/del_idol
getTenpayAddrURL = https://graph.qq.com/cft_info/get_tenpay_addr
getRepostListURL = https://graph.qq.com/t/get_repost_list
version =2.0.0.0


http://www.ppmy.cn/news/528654.html

相关文章

6.企业应用架构模式 --- 会话状态

1.无状态的价值无状态服务器意味着什么&#xff1f;对对象来说&#xff0c;它们结合了状态(数据)和行为。一个真正无状态的对象是没有成员变量的。然而&#xff0c;这不是人们在分布式企业应用中所指的无状态。分布式企业应用中的无状态服务器是指在各次请求之间不保存状态的对…

QQ联合登录

引言 &#x1f3c2; 在一个网站或者应用程序中&#xff0c;登录注册功能的重要性不言而喻。从原来繁琐的普通登录、手机验证码登录、邮箱登录到现在简约的QQ联合登录、微信联合登录、微博登录以及国外的Facebook、Twitter等多种方登录方式。 第三方社交账号来登录&#xff0c…

Java 实现QQ第三方登录

Java 实现QQ第三方登录 郑清 2018-12-17 17:56:05 6509 收藏 27 分类专栏&#xff1a; -----❺、框架/第三方工具 </div></div><div class"up-time"><span>最后发布:2018-12-17 17:56:05</span><span>首发:2018-12-17 17:56…

web实现QQ第三方登录(java版)

简介&#xff1a; 主要逻辑在java实现&#xff0c;h5只有一个a标签调用接口。 后台分两个接口&#xff1a; 接口1&#xff1a;登录前缀接口&#xff0c;h5负责调用唤醒QQ授权。 接口2&#xff1a;需要在腾讯开放平台配置回调地址的接口&#xff0c;就是授权成功后回调。 j…

张小龙《微信背后的产品观》演讲文字版

简单就是美——从苹果单按钮到微信摇一摇 今天很感谢大家从这么远的地方跑到广州来&#xff0c;对于产品的分享&#xff0c;我个人是挺有兴趣的&#xff0c;我觉得能够探讨一下怎么做产品&#xff0c;本身也是挺有意思的一件事情。 我们现在用的很多是苹果的东西&#xff0c;…

Spring Boot整合Security系列步骤及问题排查(十一)—— 集成QQ登录

工具类准备&#xff1a; Repository&#xff1b; Connection&#xff1b; ConnectionFactory&#xff08;ServiceProvider、ApiAdapter&#xff09;&#xff1b; ServiceProvider&#xff08;OAuth2Operations、Api&#xff09;&#xff1b; Api&#xff1a; /*** QQ接口** a…

支付宝不用网络,也能正常支付,太神奇了吧!

文末留言送书5本 现在生活已经离不开微信/支付宝电子支付&#xff0c;平常出去吃饭、购物只要带个手机&#xff0c;就可以解决一切&#xff0c;以致于现在已经好久没摸过真????了。 有一次出去吃饭&#xff0c;排着队付钱&#xff0c;等着过程非常无聊&#xff0c;准备拔出…

做wish用多大的虚拟服务器,Wish卖家看过来,这几个平台“潜规则”你必须知道!...

相比与其他平台的条条框框&#xff0c;Wish的低门槛可谓十分亲民&#xff0c;吸引了不少其他平台的卖家入驻&#xff0c;但不同于亚马逊、eBay的是&#xff0c;Wish平台有一套专属自己的玩法和规则&#xff0c;如果用其他平台的思维去运营Wish&#xff0c;是万万不行的&#xf…