java 实现微博,QQ联合登录

详见:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt313

开发平台 
http://connect.qq.com/  
http://open.weibo.com/ 
可以下载相应的sdk 和 API 

Java代码

  1.  

  2. 1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    package com.fanbaobao.action;  
       
    import javax.servlet.http.HttpServletRequest;  
    import javax.servlet.http.HttpServletResponse;  
    import javax.servlet.http.HttpSession;  
       
    import com.fanbaobao.service.FbbUser;  
    import com.fanbaobao.service.FbbService.Client;  
    import com.fanbaobao.util.FbbUtil;  
       
    import weibo4j.Oauth;  
    import weibo4j.Users;  
    import weibo4j.Weibo;  
    import weibo4j.http.AccessToken;  
    import weibo4j.model.User;  
    public class SinaAction extends BaseAction {  
        private String errorMsg;   
        public String toLogin()throws Exception{  
            try {  
                HttpServletRequest request=getRequest();  
                Oauth oauth=new Oauth();  
                getResponse().sendRedirect(oauth.authorize("code")); //重定向到新浪授权页面  
            catch (Exception e) {  
                e.printStackTrace();  
            }  
            return null;  
        }  
           
        /** 
         * 新浪微博登录的回调 
         * @return 
         * @throws Exception 
         */  
        public String doLogin() throws Exception{  
               
            HttpServletRequest request=getRequest();  
            HttpSession session=request.getSession();  
            String accesstoken   = null;  
            String code=request.getParameter("code");  
            if(code!=null)  
            {  
               
                Oauth oauth=new Oauth();  
                AccessToken accessToken=oauth.getAccessTokenByCode(code);  
                accesstoken=accessToken.getAccessToken();  
                if(accessToken!=null)  
                {  
                    Weibo weibo=new Weibo();  
                    weibo.setToken(accessToken.getAccessToken());  
                    Users users=new Users();  
                    User weiboUser=users.showUserById(accessToken.getUid());  
                    HttpServletResponse response=getResponse();  
                    System.out.println(weiboUser.getId());  
                    System.out.println(weiboUser.getGender());  
                    System.out.println(weiboUser.getName());  
                    System.out.println(accesstoken);  
    //              if(first<2){  
    //                  if(first==1){ //用户第一次登录,发一条微博,且follow 51bi  
    //                      Timeline timeline=new Timeline();  
    //                      timeline.UpdateStatus("我注册成为了#比购网#会员,免费注册后去淘宝购物,最高有35%的现金返还。最给力的是:到拉手、京东商城、1号店等400多家知名商城不仅能享受最低价格,还能额外省钱40%。喜欢网购的童鞋都去注册一个省钱吧!官方网址:http://www.51bi.com/space/biuser/register.jsp?currentUrl=http://www.51bi.com/taobao/");  
    //                      try {  
    //                          Friendships fm = new Friendships();  
    //                          fm.createFriendshipsById("1718952754");//follow 51bi  
    //                          fm.createFriendshipsById("2908640880");//follow 51bi  
    //                      } catch (Exception e) {  
    //                      }  
    //                  }  
                        //未完善资料  
                        Client client = FbbUtil.getClient();  
                        FbbUser fbbUser= client.doOauth(1, weiboUser.getId());  
                        session.setAttribute("fbbUserInfo", fbbUser);     
                        return SUCCESS;  
                    }  
           
                }else{  
                    errorMsg="新浪oauth 认证请求非法!";  
                    return LOGIN;  
                }  
            return SUCCESS;  
        }  
           
           
           
           
        public String getErrorMsg() {  
            return errorMsg;  
        }  
       
        public void setErrorMsg(String errorMsg) {  
            this.errorMsg = errorMsg;  
        }  
    }

 

Java代码

  1.  

  2. 1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    package com.fanbaobao.action;  
       
    import javax.servlet.http.HttpServletRequest;  
    import javax.servlet.http.HttpServletResponse;  
    import javax.servlet.http.HttpSession;  
       
    import com.fanbaobao.service.FbbUser;  
    import com.fanbaobao.service.FbbService.Client;  
    import com.fanbaobao.util.FbbUtil;  
    import com.qq.connect.QQConnectException;  
    import com.qq.connect.api.OpenID;  
    import com.qq.connect.api.qzone.PageFans;  
    import com.qq.connect.api.qzone.UserInfo;  
    import com.qq.connect.javabeans.AccessToken;  
    import com.qq.connect.javabeans.qzone.PageFansBean;  
    import com.qq.connect.javabeans.qzone.UserInfoBean;  
    import com.qq.connect.oauth.Oauth;  
       
    public class QzoneAction extends BaseAction {  
    private String errorMsg;   
       
        public String toLogin()throws Exception{  
            this.getResponse().setContentType("text/html;charset=utf-8");  
            try {  
                this.getResponse().sendRedirect(new Oauth().getAuthorizeURL(this.getRequest()));  
            catch (QQConnectException e) {  
                e.printStackTrace();  
            }  
            return null;  
        }  
           
        public String doLogin()throws Exception{  
             HttpServletResponse response=this.getResponse();  
             HttpServletRequest request=this.getRequest();  
             HttpSession session=request.getSession();  
             response.setContentType("text/html; charset=utf-8");  
                try {  
                    AccessToken accessTokenObj = 
                    (new Oauth()).getAccessTokenByRequest(request);  
                       
                    String accessToken   = null,  
                           openID        = null;  
                    Long tokenExpireIn = null;  
       
       
                    if (accessTokenObj.getAccessToken().equals("")) {  
                        errorMsg="QQ登录校验失败!";  
                        return LOGIN;  
                    else {  
                        accessToken = accessTokenObj.getAccessToken();  
                        tokenExpireIn = accessTokenObj.getExpireIn();  
                           
                        request.getSession().setAttribute("demo_access_token", accessToken);  
                        request.getSession().setAttribute(
                        "demo_token_expirein", String.valueOf(tokenExpireIn));  
                        OpenID openIDObj =  new OpenID(accessToken);  
                        openID = openIDObj.getUserOpenID();  
       
                        request.getSession().setAttribute("demo_openid", openID);  
                        UserInfo qzoneUserInfo = new UserInfo(accessToken, openID);  
                        UserInfoBean userInfoBean = qzoneUserInfo.getUserInfo();  
    //  
                        PageFans pageFansObj = new PageFans(accessToken, openID);  
                        PageFansBean pageFansBean = pageFansObj.checkPageFans("97700000");  
                        com.qq.connect.api.weibo.UserInfo weiboUserInfo = 
                        new com.qq.connect.api.weibo.UserInfo(accessToken, openID);  
                        com.qq.connect.javabeans.weibo.UserInfoBean weiboUserInfoBean =
                         weiboUserInfo.getUserInfo();  
       
                     // 第三方处理用户绑定逻辑  
                        String user_id=openID;  
                        String nickname=new String(userInfoBean.getNickname());  
                        System.out.println(user_id);  
                        System.out.println(nickname);  
                        Client client = FbbUtil.getClient();  
                        FbbUser fbbUser= client.doOauth(2, user_id);  
                        session.setAttribute("fbbUserInfo", fbbUser);     
                        return SUCCESS;  
    //                  session.setAttribute("oauth_token", oauth_token);  
    //                  session.setAttribute("oauth_token_secret", oauth_token_secret);  
    //                  InterUser interUser=new InterUser(
                                                                Constants.LOGIN_FROM_QQ,user_id,null,nickname);  
    //                  interUser.setBiUserService(biUserService);  
    //                  interUser.setRuledao(ruledao);  
    //                  interUser.setAccesstoken(accessToken);  
    //                  if (tokenExpireIn!=null) {  
    //                      interUser.setExpireIn(String.valueOf(tokenExpireIn));  
    //                  }  
    //                  session.setAttribute("uid", user_id);  
    //                  session.setAttribute("fromsite", Constants.LOGIN_FROM_QQ);  
    //                  int first=interUser.doUserLogin(request,response,false); //接口登录  
    //                  if(first<2){  
    //                      session.setAttribute("loginname",nickname);  
    //                      if (first==-1) {  
    //                          session.setAttribute("msg","save userBind error");  
    //                      }else if (first==-2) {  
    //                          session.setAttribute("msg","error");  
    //                      }  
    //                      return "qzone";  
    //                  }          
       
                    }  
                catch (QQConnectException e) {  
                    e.printStackTrace();  
                    return LOGIN;  
                }  
        }  
           
           
           
        public String getErrorMsg() {  
            return errorMsg;  
        }  
       
        public void setErrorMsg(String errorMsg) {  
            this.errorMsg = errorMsg;  
        }  
    }

 

Java代码

    1. //login.properties  

    2. ############  

    3. #t.sina login  

    4. ###########  

    5. client_ID =xx     

    6. client_SERCRET =xx  

    7. redirect_URI =xxx  

    8. baseURL=https://api.weibo.com/2/  

    9. accessTokenURL=https://api.weibo.com/oauth2/access_token  

    10. authorizeURL=https://api.weibo.com/oauth2/authorize  

    11. ############  

    12. #taoBao login  

    13. ###########  

    14.   

    15. #TAOBAO_KEY=xxxx  

    16. #TAOBAO_SECRET=xxxxxx  

    17. #TAOBAO_REDIRECT=xxxx  

    18. #authorizeURL=https://oauth.taobao.com/authorize  

    19. #accessTokenURL=https://oauth.taobao.com/token  

    20.   

    21. //qqconnectconfig.properties  

    22. app_ID = x  

    23. app_KEY = xx  

    24. redirect_URI = xxx  

    25. scope = get_user_info,add_topic,add_one_blog,add_album,upload_pic,list_album,add_share,check_page_fans,add_t,

    26. add_pic_t,del_t,get_repost_list,get_info,get_other_info,get_fanslist,get_idollist,add_idol,del_ido,

    27. get_tenpay_addr  

    28. baseURL = https://graph.qq.com/  

    29. getUserInfoURL = https://graph.qq.com/user/get_user_info  

    30. accessTokenURL = https://graph.qq.com/oauth2.0/token  

    31. authorizeURL = https://graph.qq.com/oauth2.0/authorize  

    32. getOpenIDURL = https://graph.qq.com/oauth2.0/me  

    33. addTopicURL = https://graph.qq.com/shuoshuo/add_topic  

    34. addBlogURL = https://graph.qq.com/blog/add_one_blog  

    35. addAlbumURL = https://graph.qq.com/photo/add_album  

    36. uploadPicURL = https://graph.qq.com/photo/upload_pic  

    37. listAlbumURL = https://graph.qq.com/photo/list_album  

    38. addShareURL = https://graph.qq.com/share/add_share  

    39. checkPageFansURL = https://graph.qq.com/user/check_page_fans  

    40. addTURL = https://graph.qq.com/t/add_t  

    41. addPicTURL = https://graph.qq.com/t/add_pic_t  

    42. delTURL = https://graph.qq.com/t/del_t  

    43. getWeiboUserInfoURL = https://graph.qq.com/user/get_info  

    44. getWeiboOtherUserInfoURL = https://graph.qq.com/user/get_other_info  

    45. getFansListURL = https://graph.qq.com/relation/get_fanslist  

    46. getIdolsListURL = https://graph.qq.com/relation/get_idollist  

    47. addIdolURL = https://graph.qq.com/relation/add_idol  

    48. delIdolURL = https://graph.qq.com/relation/del_idol  

    49. getTenpayAddrURL = https://graph.qq.com/cft_info/get_tenpay_addr  

    50. getRepostListURL = https://graph.qq.com/t/get_repost_list  

    51. version = 2.0.0.0  

转载于:https://www.cnblogs.com/grefr/p/6089075.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/429828.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python启动多个进程_Python程序中的进程操作--—--开启多进程

Python程序中的进程操作--—--开启多进程之前我们已经了解了很多进程相关的理论知识&#xff0c;了解进程是什么应该不再困难了&#xff0c;刚刚我们已经了解了&#xff0c;运行中的程序就是一个进程。所有的进程都是通过它的父进程来创建的。因此&#xff0c;运行起来的python…

Angular JS (2)

通过Angular JS的官方教学文档&#xff0c;了解 routeProvider 的用法&#xff0c; angular.module(aaa).config([$locationProvider,$routeProvider, funtion config($locationProvider, $routeProvider){ app.config.js ---- angular. module(phonecatApp). config([$locat…

python多线程logger_python多线程logger_Dblogger:一个Python语言实现支持多进程和多线程日志打印高效Python日志库......

日期作者版本备注2020-12-7dingbinv1.0Dblogger: a powerful Python library supporting multi process and multi thread printing logsDblogger project implements a both multi-threads-safe and multi-process-safe logger library named dblogger in python language. It…

BIEE 目录迁移(文件夹)方式

文件夹迁移方式一&#xff08;归档--取消归档&#xff09;&#xff1a; 归档&#xff1a;analytics中选择目录&#xff0c;定位至指定文件夹&#xff0c;更多中选择归档&#xff0c;保存为 .catalog文档&#xff1b; 释放归档&#xff1a; 进入目录管理器&#xff0c;离…

unityscrollview生成大量_superscrollviewforUGUI的一些使用心得

接触这个插件也有差不多半年了&#xff0c;这段时间都是跟这个插件做的UI打交道&#xff0c;所以记一下相关的使用心得做备忘。这个插件主要由三个脚本构成&#xff0c;分别是ListItemData(挂载在要展示的物体预制体身上的&#xff0c;物体对应的属性&#xff0c;初始化字段等均…

使用的组件:ckeditor

老牌Web文本编辑器&#xff0c;无需多言。 官网地址&#xff1a;http://ckeditor.com/转载于:https://www.cnblogs.com/xusweeter/p/6098942.html

mybatis 配置 mysql连接池_spring 5.x 系列第5篇 —— 整合 mybatis + druid 连接池 (xml配置方式)...

项目目录结构1. 导入依赖创建 maven 工程&#xff0c;除了 Spring 的基本依赖外&#xff0c;还需要导入 Mybatis 和 Druid 的相关依赖&#xff1a;org.springframeworkgroupId>spring-jdbcartifactId>${spring-base-version}version>dependency>mysqlgroupId>my…

noi题库(noi.openjudge.cn) 1.8编程基础之多维数组T21——T25

T21 二维数组右上左下遍历 描述 给定一个row行col列的整数数组array&#xff0c;要求从array[0][0]元素开始&#xff0c;按从左上到右下的对角线顺序遍历整个数组。 输入 输入的第一行上有两个整数&#xff0c;依次为row和col。余下有row行&#xff0c;每行包含col个整数&#…

mysql memcache redis_redis,mysql,memcache的區別與比較,redis兩種數據存儲持久化方式

redis與mysql比較區別&#xff1a;mysql中一個中小型的網絡數據庫&#xff0c;比oracle和sqlserver小&#xff0c; 但是並發能力遠超過acess這樣的桌面數據庫&#xff1b;redis是一個內存鍵值數據庫&#xff0c;支持網絡、可基於內存亦可持久化的日志型、Key-Value數據庫。redi…

Java学习笔记三——数据类型

前言 Java是强类型&#xff08;strongly typed&#xff09;语言&#xff0c;强类型包含两方面的含义&#xff1a; 所有的变量必须先声明后使用&#xff1b;指定类型的变量只能接受预支匹配的值。这意味着每一个变量和表达式都有一个在编译时就确定的类型。 Java数据类型分为两大…

word可以直接导入mysql嘛_如何把word文档导入到数据库中——java POI

本文方法借鉴于https://www.cnblogs.com/ljysy/p/10574197.html在经过朋友的指导下&#xff0c;在处理文档的方式上有所不同。我的数据库使用的是SQL server&#xff0c;这篇博客将不介绍如何将数据存储进数据库中&#xff0c;只进行java POI处理文档数据的介绍&#xff0c;在处…

metinfo mysql off_利用Sqlmap测试MetInfo企业网站管理系统MySql注入

上次叉叉讲了Sqlmap简单注入(access数据库)教程&#xff0c;这次咱说说MySql数据库MetInfo&#xff0c;是一款强大的企业网站管理系统&#xff0c;采用PHPMysql架构。叉叉下载的是MetInfo 5.1.5的免费版本&#xff0c;咱不是大拿&#xff0c;不会分析源码&#xff0c;直接丢到W…

IOS的七种手势

今天为大家介绍一下IOS 的七种手势&#xff0c;手势在开发中经常用到&#xff0c;所以就简单 通俗易懂的说下&#xff0c; 话不多说&#xff0c;直接看代码&#xff1a; // 初始化一个UIimageViewUIImageView *imageView [[UIImageView alloc]initWithFrame:CGRectMake(100, 1…

mysql获取后一天_mysql获取当前时间,前一天,后一天

今天是2016年08月01日。date_sub(2016-08-01,interval 1 day) 表示 2016-07-31date_sub(2016-08-01,interval 0 day) 表示 2016-08-01date_sub(2016-08-01,interval -1 day) 表示 2016-08-02date_sub(curdate(),interval 1 day) 表示 2016-07-31date_sub(curdate(),interval -1…

c++获取sqlite3数据库表中所有字段的方法

常用方法&#xff1a; 1.使用sqlite3_get_table函数 2.获取sqlite创建表的sql语句字符串&#xff0c;然后进行解析获取到相应的字段 3.采用配置文件的方式&#xff0c;将所有字段名写入配置文件 方法1&#xff1a;使用sqlite3_get_table函数 代码&#xff1a; char *dbname “…

python sql语句生成_python Django 生成sql语句

class TestModel(models.Model):Namemodels.CharField(max_length64,blankTrue)>>> from django.core.management.color import no_style#Style是用来输出语句时着色的>>> from django.db import connection>>> from django.db.backends import cre…

Oozie的架构

Oozie的架构图&#xff0c;如下&#xff1a; 从oozie的架构图中&#xff0c;可以看到所有的任务都是通过oozie生成相应的任务客户端&#xff0c;并通过任务客户端来提交相应的任务。 继续。。。 转载于:https://www.cnblogs.com/zlslch/p/6117705.html

mysql如何做计划任务_简单的mysql 过程计划任务

首先讲讲过程是什么东西, 过程差不多就是SQL用的java之于方法.把一段sql做成过程后一个简单的调用就可以批量执行这些sql,很方便.其实就像java后台写个执行复杂sql的方法,你只是把这段sql存到数据库里了而已.mysql里面有"过程"和"函数"两个概念, 基本上前者…

Linux的#和$区别

【#】代表 root权限【$】代表普通用户 如果更改了/etc/profile , 或~/.bashrc等文档&#xff0c;可以用任何符号来代替它们。 linux窗口下的【rootlocate~】其中的【~】代表代表用户的家目录&#xff08;root为/root&#xff0c;一般user则为/home/username&#xff09;&#x…

python贴吧顶贴_python实现贴吧顶贴机器人

项目目录:– url.txt&#xff1a;多个需要顶起的帖子地址。– reply&#xff1a;多条随机回复的内容。–selenium&#xff1a;浏览器自动化测试框架。首先&#xff0c;我们先使用pip完成selenium的安装。接着&#xff0c;导入pyautogui自动控制鼠标的库。示例代码&#xff1a;p…