当前位置: 移动技术网 > IT编程>开发语言>Java > 支付宝开发平台之第三方授权登录与获取用户信息

支付宝开发平台之第三方授权登录与获取用户信息

2019年07月22日  | 移动技术网IT编程  | 我要评论

对于第三方登录,我们常见了,很多应用可以进行第三方登录,我常用的有:qq、微信、新浪、支付宝等等,今天我们就一起来简单学习一下支付宝第三方授权登录。

打开支付宝开发平台,注册成为开发者,点击开发者中心,在我的应用中创建一个应用:

点击功能信息,添加我们需要的功能:

到这我们还不能进行接口调试,因为我们的应用没有上线,appid是无效的,这里阿里给了我们一个解决方案,就是通过沙箱模式进行接口调试,下面我们来配一下我们的沙箱模式:

配置过ras2就可以不用配置ras1了,公钥和私钥的生成规则,查看支付宝文档,我这里是使用支付宝提供的秘钥生成工具生成的,创建完成后,我们下载的文件夹下会生成三个文件:rsa_private_key.pem(秘钥)、rsa_private_key_pkcs8.pem(java专用秘钥)、rsa_public_key.pem(公钥),我们把生成的公钥上传到沙箱环境下ras2下,点击查看支付宝公钥,将公钥保存,接下来开发使用。应用网关和授权回调地址,这里因为是本地调试,暂时写为图上内容即可。

做好这些准备工作我们就可以开始进行我们的具体功能实现了,首先我打开支付宝开发平台开发文档,点击基础能力->第三方应用授权,阅读一遍内容,我回到文档的第三步:

注意这里的app_id要填写沙箱应用的id,不然是无法完成调用支付登录页面的。

<a href="https://openauth.alipaydev.com/oauth2/apptoappauth.htm?app_id=沙箱环境下的应用id&redirect_uri=http://127.0.0.1:8080/alipaytest/return_url.jsp" >支付宝第三方登录</a><br/>

下面我们看一下我们的return_url.jsp的业务处理:

<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%>
<%@ page import="java.util.*"%>
<%@ page import="java.util.map"%>
<%@ page import="com.alipay.api.*"%>
<%@ page import="com.alipay.api.request.*"%>
<%@ page import="com.alipay.api.response.*"%>
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title>支付宝页面跳转同步通知页面</title>
 </head>
 <body>
<%
 //获取支付宝get过来反馈信息
 map<string,string> params = new hashmap<string,string>();
 map requestparams = request.getparametermap();
 for (iterator iter = requestparams.keyset().iterator(); iter.hasnext();) {
  string name = (string) iter.next();
  string[] values = (string[]) requestparams.get(name);
  string valuestr = "";
  for (int i = 0; i < values.length; i++) {
   valuestr = (i == values.length - 1) ? valuestr + values[i]
     : valuestr + values[i] + ",";
  }
  //乱码解决,这段代码在出现乱码时使用。如果mysign和sign不相等也可以使用这段代码转化
  valuestr = new string(valuestr.getbytes("iso-8859-1"), "utf-8");
  params.put(name, valuestr);
 }
 //获取支付宝的通知返回参数,可参考技术文档中页面跳转同步通知参数列表(以下仅供参考)//
 //支付宝用户号
 string app_id = new string(request.getparameter("app_id").getbytes("iso-8859-1"),"utf-8");
 out.write(app_id + "\n");
 //获取第三方登录授权
 string alipay_app_auth = new string(request.getparameter("source").getbytes("iso-8859-1"),"utf-8");
 out.write(alipay_app_auth + "\n");
 //第三方授权code
 string app_auth_code = new string(request.getparameter("app_auth_code").getbytes("iso-8859-1"),"utf-8");//获的第三方登录用户授权app_auth_code
 out.write(app_auth_code + "\n");
 string privatekey = "生成的秘钥";
 string publickey = "支付宝公钥";
 //使用auth_code换取接口access_token及用户userid
  //alipayclient alipayclient = new defaultalipayclient("https://openapi.alipay.com/gateway.do","应用appid",privatekey,"json","utf-8",publickey,"rsa2");//正常环境下的网关
  alipayclient alipayclient = new defaultalipayclient("https://openapi.alipaydev.com/gateway.do","沙箱环境下的应用appid",privatekey,"json","utf-8",publickey,"rsa2");//沙箱下的网关
 alipayopenauthtokenapprequest requestlogin1 = new alipayopenauthtokenapprequest();
 requestlogin1.setbizcontent("{" +
  "\"grant_type\":\"authorization_code\"," +
  "\"code\":\""+ app_auth_code +"\"" +
  "}");
 //第三方授权
 alipayopenauthtokenappresponse responsetoken = alipayclient.execute(requestlogin1);
 if(responsetoken.issuccess()){
  out.write("<br/>调用成功" + "\n");
  out.write(responsetoken.getauthappid() + "\n");
  out.write(responsetoken.getappauthtoken() + "\n");
  out.write(responsetoken.getuserid() + "\n");
 } else {
  out.write("调用失败" + "\n");
 }
%>
 </body>
</html>

到这里我们的支付宝第三方登录授权就为大家介绍完毕,不过需要指出的是,支付宝第三方授权登录,要求使用者不能通过该方式进行用户导流,也就是说第三方登录成功后,不能出现引导用户完善基本信息的内容,只能使用支付的用户id进行用户身份标示。

看完上面的第三授权登录,一定要很多小朋友感觉不过瘾,第三方登录我们只能拿到用的支付宝id,如果我们需要获取的用户信息包含用户id、昵称、性别、省份、城市、用户头像、用户类型、用户状态、是否实名认证、是否是学生等信息,这是我们就需要获得一个用户授权,通过用户授权,我们可以获得用户在支付宝上面的信息。下面我们开始具体的功能实现:

首先我们看一下支付宝开发文档,基础功能->获取会员信息->快速接入,我们看第四步下的第一小步,查看沙箱环境下url拼接:

<a href="https://openauth.alipaydev.com/oauth2/publicappauthorize.htm?app_id=沙箱环境下的appid&scope=auth_user&redirect_uri=http://127.0.0.1:8080/alipaytest/return_url.jsp" >用户授权</a><br/>

这里需要注意的是关于scope的说明:

  • auth_base:以auth_base为scope发起的网页授权,是用来获取进入页面的用户的userid的,并且是静默授权并自动跳转到回调页的。用户感知的就是直接进入了回调页(通常是业务页面)。
  • auth_user:以auth_user为scope发起的网页授权,是用来获取用户的基本信息的(比如头像、昵称等)。但这种授权需要用户手动同意,用户同意后,就可在授权后获取到该用户的基本信息。

接下来我们看一下return_url.jsp文件:

<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%>
<%@ page import="java.util.*"%>
<%@ page import="java.util.map"%>
<%@ page import="com.alipay.api.*"%>
<%@ page import="com.alipay.api.request.*"%>
<%@ page import="com.alipay.api.response.*"%>
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title>支付宝页面跳转同步通知页面</title>
 </head>
 <body>
<%
 //获取支付宝get过来反馈信息
 map<string,string> params = new hashmap<string,string>();
 map requestparams = request.getparametermap();
 for (iterator iter = requestparams.keyset().iterator(); iter.hasnext();) {
  string name = (string) iter.next();
  string[] values = (string[]) requestparams.get(name);
  string valuestr = "";
  for (int i = 0; i < values.length; i++) {
   valuestr = (i == values.length - 1) ? valuestr + values[i]
     : valuestr + values[i] + ",";
  }
  //乱码解决,这段代码在出现乱码时使用。如果mysign和sign不相等也可以使用这段代码转化
  valuestr = new string(valuestr.getbytes("iso-8859-1"), "utf-8");
  params.put(name, valuestr);
 }
 //获取支付宝的通知返回参数,可参考技术文档中页面跳转同步通知参数列表(以下仅供参考)//
 //支付宝用户号
 string app_id = new string(request.getparameter("app_id").getbytes("iso-8859-1"),"utf-8");
 out.write(app_id + "\n");
 //获取用户信息授权
 string auth_user = new string(request.getparameter("scope").getbytes("iso-8859-1"),"utf-8");
 out.write(auth_user + "\n");
 //获的第三方登录用户授权auth_code
 string auth_code = new string(request.getparameter("auth_code").getbytes("iso-8859-1"),"utf-8");
 out.write(auth_code + "\n");
 string privatekey = "私钥";
 string publickey = "支付宝公钥";
 //使用auth_code换取接口access_token及用户userid
  //alipayclient alipayclient = new defaultalipayclient("https://openapi.alipay.com/gateway.do","应用appid",privatekey,"json","utf-8",publickey,"rsa2");//正常环境下的网关
  alipayclient alipayclient = new defaultalipayclient("https://openapi.alipaydev.com/gateway.do","沙箱环境先的应用appid",privatekey,"json","utf-8",publickey,"rsa2");//沙箱下的网关
 //获取用户信息授权
  alipaysystemoauthtokenrequest requestlogin2 = new alipaysystemoauthtokenrequest();
  requestlogin2.setcode(auth_code);
  requestlogin2.setgranttype("authorization_code");
  try {
 alipaysystemoauthtokenresponse oauthtokenresponse = alipayclient.execute(requestlogin2);
 out.write("<br/>accesstoken:"+oauthtokenresponse.getaccesstoken() + "\n");
  //调用接口获取用户信息
 alipayclient alipayclientuser = new defaultalipayclient("https://openapi.alipaydev.com/gateway.do", "2016073100131450", privatekey, "json", "utf-8", publickey, "rsa2"); 
 alipayuserinfosharerequest requestuser = new alipayuserinfosharerequest();
 try {
  alipayuserinfoshareresponse userinfoshareresponse = alipayclient.execute(requestuser, oauthtokenresponse.getaccesstoken());
  out.write("<br/>userid:" + userinfoshareresponse.getuserid() + "\n");//用户支付宝id
  out.write("usertype:" + userinfoshareresponse.getusertype() + "\n");//用户类型
  out.write("userstatus:" + userinfoshareresponse.getuserstatus() + "\n");//用户账户动态
  out.write("email:" + userinfoshareresponse.getemail() + "\n");//用户email地址
  out.write("iscertified:" + userinfoshareresponse.getiscertified() + "\n");//用户是否进行身份认证
  out.write("isstudentcertified:" + userinfoshareresponse.getisstudentcertified() + "\n");//用户是否进行学生认证
 } catch (alipayapiexception e) {
  //处理异常
  e.printstacktrace();
 }
 } catch (alipayapiexception e) {
  //处理异常
  e.printstacktrace();
 }
%>
 </body>
</html>

到这里我们通过沙箱模式进行支付宝第三方登录与获取用户授权的内容就和大家分享完毕,小伙伴快去试一试吧。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持移动技术网!

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网