PHPでWeChatコードスキャンの自動ログイン・登録機能を実装する方法

墨辰丷
リリース: 2023-03-28 21:54:02
オリジナル
1811 人が閲覧しました

この記事では主に、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側からジャンプ


UnionID取得メソッド

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 &#39;<h1>错误:</h1>&#39;.$token->errcode;
echo &#39;<br/><h2>错误信息:</h2>&#39;.$token->errmsg;
exit;
}
$access_token_url = &#39;https://api.weixin.qq.com/sns/oauth2/refresh_token?appid=&#39;.$appid.&#39;&grant_type=refresh_token&refresh_token=&#39;.$token->refresh_token;
//转成对象
$access_token = json_decode($this->https_request($access_token_url));
if (isset($access_token->errcode)) {
echo &#39;<h1>错误:</h1>&#39;.$access_token->errcode;
echo &#39;<br/><h2>错误信息:</h2>&#39;.$access_token->errmsg;
exit;
}
$user_info_url = &#39;https://api.weixin.qq.com/sns/userinfo?access_token=&#39;.$access_token->access_token.&#39;&openid=&#39;.$access_token->openid.&#39;&lang=zh_CN&#39;;
//转成对象
$user_info = json_decode($this->https_request($user_info_url));
if (isset($user_info->errcode)) {
echo &#39;<h1>错误:</h1>&#39;.$user_info->errcode;
echo &#39;<br/><h2>错误信息:</h2>&#39;.$user_info->errmsg;
exit;
}
//打印用户信息
// echo &#39;<pre class="brush:php;toolbar:false">&#39;;
// print_r($user_info);
// echo &#39;
'; //获取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号第一次登录 }
ログイン後にコピー

概要: 以上がこの記事の全内容です、皆様の勉強に少しでもお役に立てれば幸いです。

関連する推奨事項:

データの暗号化と復号化を実装するための PHP 対称暗号化関数の詳細な説明

PHP 画像認識テクノロジの原理と実装


php

PATH_SEPARATOR は現在のサーバー システム タイプ インスタンスを決定します


以上がPHPでWeChatコードスキャンの自動ログイン・登録機能を実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!