この記事では主に、WeChat コードスキャンの自動ログインと登録機能を実現するための PHP を紹介し、PHP WeChat QR コード認識インターフェイスと関連する使用スキルを例の形で分析します。必要な友人は参考にしてください。実際、WeChat の開発を行ったことがある人なら誰でも、WeChat インターフェイスが非常に強力で、実装が非常に簡単であることを知っています。ここでは、WeChat の自動ログインと登録の例を見ていきます。
php WeChat スキャン PC 側での自動ログインと登録に使用されるインターフェイス スコープは、snsapi_userinfo です。1 つの WeChat ログインは Web ページ認証ログインであり、もう 1 つは、
Web ページ認証ログインです。 //mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75 .html
WeChat 共同ログイン: https://open.weixin.qq.com/cgi-bin/frame?t=home/web_tmpl&lang=zh_CN
1. まず、WeChat リンクにロゴを追加して QR コードを生成します
たとえば、リンクは https://open.weixin.qq.com/connect/oauth2/authorize?appid='.$appid です。 .'&redirect_uri='.$url.'&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect' WeChat に渡す内容と返す内容はサーバー間の識別子として使用できるため、状態について大騒ぎすることができます。 WeChat セグメント:
public function creatqrAction(){ if($_GET['app']){ $wtoken=$_COOKIE['wtoken']; $postdata=$_SESSION['w_state']; if($wtoken){ $postdata=$wtoken; } include CONFIG_PATH . 'phpqrcode/'.'phpqrcode.php' $sh=$this->shar1(); $value="https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx138697ef383a9167&redirect_uri=http://www.xxx.net/login/wcallback&response_type=code&scope=snsapi_userinfo&state=".$postdata."&connect_redirect=1#wechat_redirect"; $errorCorrectionLevel = "L"; $matrixPointSize = "5"; QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize); } }
このとき、State は識別子であり、phpqrcode は記事の最後でダウンロードできるため、コールバック アドレス http://www を設定します。 .xxx.net/login/wcallback
、wcallback メソッドでデータを処理し、ユーザーが生成したセッションを挿入し、ログインにジャンプし、状態が整ったら PC 側で Ajax がサーバーにリクエストする数秒を設定できます。 WeChat ブラウザーでの処理が完了すると、ウィンドウを閉じることができます:
document.addEventListener('WeixinJSBridgeReady', function onBridgeReady() { WeixinJSBridge.call('closeWindow');}, false);
成功後に承認して WeChat サービス アカウントのフォロー ページにジャンプすることもできます。ログイン:
header("Location: weixin://profile/gh_a5e1959f9a4e"); wcallback方法做处理登陆 $code = $_GET['code']; $state = $_GET['state']; $setting = include CONFIG_PATH . 'setting.php' $appid=$setting['weixin']['appid']; $appsecret=$setting['weixin']['appsecret']; if (emptyempty($code)) $this->showMessage('授权失败'); try{ $token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$appsecret.'&code='.$code.'&grant_type=authorization_code' $token = json_decode($this->https_request($token_url)); }catch(Exception $e) { print_r($e); } if (isset($token->errcode)) { echo '错误:'.$token->errcode; echo '错误信息:'.$token->errmsg; exit; } $access_token_url = 'https://api.weixin.qq.com/sns/oauth2/refresh_token?appid='.$appid.'&grant_type=refresh_token&refresh_token='.$token->refresh_token; //转成对象 $access_token = json_decode($this->https_request($access_token_url)); if (isset($access_token->errcode)) { echo '错误:'.$access_token->errcode; echo '错误信息:'.$access_token->errmsg; exit; } $user_info_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token->access_token.'&openid='.$access_token->openid.'&lang=zh_CN' //转成对象 $user_info = json_decode($this->https_request($user_info_url)); if (isset($user_info->errcode)) { echo '错误:'.$user_info->errcode; echo '错误信息:'.$user_info->errmsg; exit; } //打印用户信息 // echo '' // print_r($user_info); // echo ''
phpqrcodeクラスライブラリのダウンロードはここでは提供されていません
magento WeChatスキャンコードWebサイトの自動ログイン例
https://open.weixin.qq.com/cgi -bin/showdocument ?action=dir_list&t=resource/res_list&verify=1&lang=zh_CN 承認後のインターフェイス呼び出し (UnionID) を表示すると、コールバック アドレスを入力していることを見つけるのは難しくありません。ユーザーは、 PC側からジャンプ 概要: 以上がこの記事の全内容です、皆様の勉強に少しでもお役に立てれば幸いです。 関連する推奨事項: 以上がPHPでWeChatコードスキャンの自動ログイン・登録機能を実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。public function wcallbackAction(){
$code = $_GET['code'];
$state = $_GET['state'];
$setting = include CONFIG_PATH . 'setting.php';
$appid=$setting['weixin']['appid'];
$appsecret=$setting['weixin']['appsecret'];
if (emptyempty($code)) $this->showMessage('授权失败');
try{
$token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$appsecret.'&code='.$code.'&grant_type=authorization_code';
$token = json_decode($this->https_request($token_url));
}catch(Exception $e)
{
print_r($e);
}
if (isset($token->errcode)) {
echo '<h1>错误:</h1>'.$token->errcode;
echo '<br/><h2>错误信息:</h2>'.$token->errmsg;
exit;
}
$access_token_url = 'https://api.weixin.qq.com/sns/oauth2/refresh_token?appid='.$appid.'&grant_type=refresh_token&refresh_token='.$token->refresh_token;
//转成对象
$access_token = json_decode($this->https_request($access_token_url));
if (isset($access_token->errcode)) {
echo '<h1>错误:</h1>'.$access_token->errcode;
echo '<br/><h2>错误信息:</h2>'.$access_token->errmsg;
exit;
}
$user_info_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token->access_token.'&openid='.$access_token->openid.'&lang=zh_CN';
//转成对象
$user_info = json_decode($this->https_request($user_info_url));
if (isset($user_info->errcode)) {
echo '<h1>错误:</h1>'.$user_info->errcode;
echo '<br/><h2>错误信息:</h2>'.$user_info->errmsg;
exit;
}
//打印用户信息
// echo '<pre class="brush:php;toolbar:false">';
// print_r($user_info);
// echo '
';
//获取unionid
$uid=$user_info->unionid;
}
//用户操作处理 分为再次登录和第一次登陆
$sql="select h_user_id from dtb_user_binded as t1 left join dtb_user_weixin as t2 on t1.u_id=t2.id where t1.u_type='".
User::$arrUtype['weixin_num_t']."' and t2.openid='$user_info->unionid'";
$h_user_id = Core_Db::getOne($sql);
if(!emptyempty($h_user_id)){//该weixin号再次登录
}{//该weixin号第一次登录
}