当前位置:   article > 正文

php获取支付宝用户信息_alipay_get_openid php

alipay_get_openid php

一:创建应用

要在您的应用中使用支付宝开放产品的接口能力:

  1.  您需要先去蚂蚁金服开放平台(open.alipay.com),在开发者中心创建登记您的应用,此时您将获得应用唯一标识(APPID);
  2. 请在【功能信息】中点击【添加功能】,选择【获取会员信息】;
  3. 提交审核,等待审核通过,该应用正式可以使用。

需要详细了解开放平台创建应用步骤请参考《开放平台应用创建指南》。

二:配置密钥

开发者调用接口前需要先生成RSA密钥,RSA密钥包含应用私钥(APP_PRIVATE_KEY)、应用公钥(APP_PUBLIC_KEY)。生成密钥后在开放平台开发者中心进行密钥配置,配置完成后可以获取支付宝公钥(ALIPAY_PUBLIC_KEY)。详情请参考《配置应用环境》。

三:搭建和配置开发环境

1. 下载服务端SDK

为了帮助开发者调用开放接口,我们提供了开放平台服务端SDK,包含JAVA、PHP和.NET三个语言版本,封装了签名&验签、HTTP接口请求等基础功能。请先下载对应语言版本的SDK并引入您的开发工程。

各语言版本服务端SDK详细使用说明,请参考《服务端SDK说明》,本文需要下载的就是PHP的SDK包了。

2. 接口调用配置

先看前端代码:

2.1 先从后台获取二维码,并且展示出来

  1. function show(){
  2. var parmss = {
  3. phone:userName
  4. };
  5. $.ajax({
  6. url: model.base_url + "/Alipay/getQRcode",
  7. data: parms,
  8. type: "post",
  9. dataType: "text",
  10. success: function(res, status, xhr) {
  11. if(res != '' || res != null){
  12. //将二维码显示出来
  13. var url = res.body.url;
  14. popupUrl.find(".pm-left").find("img").attr("src",url);
  15. }
  16. },
  17. error: function(data) {
  18. }
  19. });
  20. $("#popup-bind").show();
  21. int = setInterval(model.bindQuery,"1000");//通过定时器,判断是否绑定过第三方支付
  22. }

2.2 定时器,判断是否绑定成功

  1. //根据请求后台看是否数据已经绑定function bindQuery(){
  2. var parmss = {
  3. phone:userName
  4. };
  5. $.ajax({
  6. url: model.base_url+"Authorland/getBindsucess",
  7. data: parmss,
  8. type: "post",
  9. dataType: "text",
  10. success: function(res, status, xhr) {
  11. if(res != '' || res != null){
  12. if(bind_num == 0){
  13. var zfb_id = res.body.zfb_id;
  14. bind_num = 1;
  15. }else{
  16. var wx_ids = res.body.wx_id;
  17. }         如果支付宝已经绑定,就把已经绑定的图片换上去,并且把二维码关闭掉
  18. if(zfb_id != undefined || zfb_ids != undefined){
  19. $("#bind-zfb").unbind();
  20. $("#bind-zfb").addClass("on");
  21. $("#bind-zfb").find("p").text("已绑定支付宝");
  22. $("#bind-zfb").find("img").attr("src","/public/Content/Images/wallet/zfb_on.png");
  23. }
  24. if(wx_id != wx_ids || zfb_id != zfb_ids){
  25. clearInterval(int);//清除定时器
  26. }
  27. }
  28. }
  29. });
  30. }

2.3 php 后台处理代码

直接看php代码

  1. <?php
  2. namespace app\service\controller;
  3. use think\Loader;
  4. use think\Session;
  5. use alipay\jssdk;
  6. use think\Db;
  7. use alipayapi\aop\AopClient;
  8. use alipayapi\aop\request\AlipaySystemOauthTokenRequest;
  9. use alipayapi\aop\request\AlipayUserInfoShareRequest;
  10. use alipayapi\aop\request\AlipayUserUserinfoShareRequest;
  11. /**
  12. * Class Alipay
  13. * @package app\service\controller
  14. * @note 该控制器是做支付宝第三方登录的
  15. */
  16. class Alipay extends Base{
  17. private $appid;
  18. private $rsaPrivateKey; //应用密钥
  19. private $alipayrsaPublicKey; //支付宝公钥
  20. private $grantRedirect; //授权后回调地址
  21. private $aop; //操作第三方登录的类对象
  22. public function __construct()
  23. {
  24. require("./extend/alipayapi/AopSdk.php");
  25. $this->appid='2018111362173186';
  26. $this->alipayrsaPublicKey='您的公钥';
  27. $this->rsaPrivateKey='您的私钥';
  28. //该回调地址必须和支付宝开发者平台对应的应用设置的回调地址一致
  29. $this->grantRedirect='https://www.baidu.com/Alipay/getAlipayUseInfo';
  30. /**
  31. * 该类是支付宝官方sdk方法
  32. */
  33. $this->aop = new AopClient();
  34. $aop=$this->aop;
  35. $aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
  36. $aop->appId = $this->appid;
  37. $aop->rsaPrivateKey = $this->rsaPrivateKey;
  38. $aop->alipayrsaPublicKey = $this->alipayrsaPublicKey;
  39. $aop->apiVersion = '1.0';
  40. $aop->signType = 'RSA2';
  41. $aop->postCharset='UTF-8';
  42. $aop->format='json';
  43. parent::__construct();
  44. }
  45. /**
  46. * 动态创建二维码
  47. */
  48. public function alipayCreateQRcode(){
  49. $phone = input("param.phone");//接收电话号码
  50. $codeObj = new \qrcode\QRcode();
  51. $url='https://www.baidu.com/Alipay/goQRcodefunc?mobile='.$phone;//url拼接电话号码参数,准备只做二维码
  52. $dir = './public/qrcode/';
  53. $size = 10;
  54. if(!is_dir($dir)){
  55. @mkdir($dir,0777);
  56. }
  57. $createDirImg = $dir.$moblie.'_alipay.jpg';//生成的二维码图片的地址
  58. $codeObj::png($url,$createDirImg,'L',$size,2);//生成二维码
  59. $msg['code'] = 10000;
  60. $msg['url'] = 'https://www.baidu.com'.substr($createDirImg,1,strlen($createDirImg));;
  61. $msg['mobile'] = $moblie; echo json_encode($msg);//返回二维码地址
  62. }
  63. /**
  64. * @note 扫二维码跳转到的方法
  65. */
  66. public function goQRcodefunc(){
  67. $mobile=input("param.mobile");//接收二维码传过来的电话
  68. $this->grantRedirect=urlencode($this->grantRedirect."?mobile=$mobile");//拼接授权回调的地址,吧mobile传过去
  69. $url ="https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id={$this->appid}&scope=auth_user&redirect_uri={$this->grantRedirect}";
  70. header("Location:".$url);//跳转到下面的url拉起授权页面
  71. }
  72. /**
  73. *@note 根据传过来的授权码换取,授权的accessToken
  74. */
  75. public function getAccess_token($code){
  76. $request = new AlipaySystemOauthTokenRequest();
  77. $request->setGrantType("authorization_code");
  78. $request->setCode($code);//这里传入 code
  79. $result = $this->aop->execute($request);
  80. $responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response";
  81. if(isset($result->$responseNode->access_token)&& !empty($result->$responseNode->access_token)){
  82. return $result->$responseNode->access_token;
  83. }else{
  84. $files = 'ali/'.date("Ymd").".txt";
  85. $log = 'time:'.date('Y-m-d H:i:s').'---errsssssss code:'.$code.'---response:'.json_encode($result)."\n\n";
  86. filePutContents($files,$log);
  87. }
  88. }
  89. /**
  90. * @param $code 根据传过来的授权码换取授权的用户信息
  91. * @return array 返回用户的信息
  92. * @throws \Exception
  93. */
  94. public function getAlipayUserdata($code){
  95. $access_token=$this->getAccess_token($code);
  96. $request_a = new AlipayUserInfoShareRequest();
  97. $result_a = $this->aop->execute ($request_a,$access_token); //这里传入获取的access_token
  98. $user_id = $result_a->alipay_user_info_share_response->user_id; //用户唯一id
  99. $city = $result_a->alipay_user_info_share_response->city; //用户城市
  100. $province = $result_a->alipay_user_info_share_response->province; //用户省份
  101. $avatar = $result_a->alipay_user_info_share_response->avatar; //用户头像
  102. $is_student_certified = $result_a->alipay_user_info_share_response->is_student_certified;
  103. $gender = $result_a->alipay_user_info_share_response->gender; //用户性别
  104. $user_type = $result_a->alipay_user_info_share_response->user_type;
  105. $user_status = $result_a->alipay_user_info_share_response->user_status;
  106. $is_certified = $result_a->alipay_user_info_share_response->is_certified;
  107. return array(
  108. 'user_id'=>$user_id,
  109. 'gender'=>$gender,
  110. 'city'=>$city,
  111. 'avatar'=>$avatar,
  112. 'nickname'=>'',
  113. 'province'=>$province,
  114. 'is_student_certified'=>$is_student_certified,
  115. 'user_type'=>$user_type,
  116. 'user_status'=>$user_status,
  117. 'is_certified'=>$is_certified
  118. );
  119. }
  120. /**
  121. *
  122. *@note 授权后成功后回调的地址方法
  123. */
  124. public function getAlipayUseInfo(){
  125. $input = input('param.');//获取传过来的参数
  126. $code = $input['auth_code'];
  127. $param=$this->getAlipayUserdata($code); //第三方信息if(isset($param['user_id'])){
  128. //此处是将数据存储到数据库的逻辑       //删除二维码图片
  129. $createDelImg = './public/qrcode/'.$moblie.'_alipay.jpg';
  130. @unlink($createDelImg);
  131. echo '<h1 style="margin-top: 5rem; margin-bottom: 5rem; text-align: center;">绑定支付宝成功</h1>';
  132. }else{
  133. $msg['code'] = 405;
  134. $msg['msg'] = '服务器繁忙,请稍后再绑定';
  135. exit(json_encode($msg));
  136. }
  137. }
  138. }
  139. ?>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/122929
推荐阅读
相关标签
  

闽ICP备14008679号