注:这篇文章基础是小程序已创建成功(不懂得看我前面的文章)
授权流程技术说明
小程序或者公众号授权给第三方平台的技术实现流程比较简单,如下图所示:
第三方服务商构建授权链接放置自己的网站,用户点击后,弹出授权页面。
账号管理员扫码,选择需要授权的账号,进行授权。
下面对其进行详细介绍:
步骤 1:第三方平台方获取预授权码(pre_auth_code)
步骤 2:引入用户进入授权页
步骤 3:用户确认并同意登录授权给第三方平台方
步骤 4:授权后回调 URI,得到授权码(authorization_code)和过期时间
步骤 5:利用授权码调用公众号或小程序的相关 API
注:
1.这里其实通过上一篇文章 第三方通过接口创建的小程序就已经在回调中回调了appid和auth_code授权码 可以不用授权这操作 但是不建议那样做,
2.普通正常创建的小程序想要授权托管给第三方必须这样授权
话不多说,直接上代码!!!
######################微信第三方平台授权流程##########################
/**
* 扫码授权,注意此URL必须放置在页面当中用户点击进行跳转,不能通过程序跳转,否则将出现“请确认授权入口页所在域名,与授权后回调页所在域名相同....”错误
* @param string $redirect_uri : 扫码成功后的回调地址
* @param int $auth_type : 授权类型,1公众号,2小程序,3公众号/小程序同时展现。不传参数默认都展示
*/
public function startAuth($redirect_uri='http://xxxxx/home/call',$auth_type = 3)
{
$url = "https://mp.weixin.qq.com/cgi-bin/componentloginpage?component_appid=".self::$appId."&pre_auth_code=".$this->get_pre_auth_code()."&redirect_uri=".urlencode($redirect_uri)."&auth_type=".$auth_type;
return $url;
}
/**
* 第三方平台方获取预授权码
* @return string pre_auth_code
*/
public function get_pre_auth_code()
{
$url = "https://api.weixin.qq.com/cgi-bin/component/api_create_preauthcode?component_access_token=".self::getMiniToken();
$data = '{"component_appid":"'.self::$appId.'"}';
$res = json_decode(postUrl($url,$data),true);
if(!array_key_exists('pre_auth_code',$res)) return false;
return $res['pre_auth_code'];
}
/**
* 小程序或者公众号授权给第三方平台后的回调
* @access public
*/
public function call(Request $request){
$result = array();
if(!empty($_GET)){
if(!empty($_GET['auth_code'])){
$result = $this->getMiniAppInfo($_GET['auth_code'],self::$companyId);
}
}
file_put_contents(storage_path('logs/Mini/auth_call.log'),'['.date('Y-m-d : h:i:s',time()).']'.json_encode($result)."\r\n",FILE_APPEND);
return redirect('/adminindex');//跳转
}
/**
* 通过授权码换取小程序的接口调用凭据和授权信息并保存
* @param $companyId 公司编号 区分不同小程序授权账号
* @param $authCode 授权码,会在