


The content of this article is about the code implementation of WeChat authorized login under the TP5 framework. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
New configuration file wechat.php
<?php return [ 'oauth' => [ 'appid' => '***', 'appsecret' => '***', ], ];
New extend\wechat\WechatOauth.php
<?php namespace wechat; /** * @package 微信授权控制器 */ class WechatOauth{ //微信授权配置信息 private $wechat_config = [ 'appid' => '', 'appsecret' => '', ]; public function __construct() { $this->wechat_config = $this->wechatConfig(); } /** * 获取秘钥配置 * @return [type] 数组 */ public function wechatConfig() { $wechat_config = array_merge($this->wechat_config,config('wechat.oauth')); return $wechat_config; } /** * 获取openid * @return string|mixed */ public function getUserAccessUserInfo($code = "") { if(empty($code)){ $baseUrl = request()->url(true); $url = $this->getSingleAuthorizeUrl($baseUrl, "123"); Header("Location: $url"); exit(); }else{ $access_token = $this->getSingleAccessToken($code); return $this->getUserInfo($access_token); } } /** * 微信授权链接 * @param string $redirect_uri 要跳转的地址 * @return [type] 授权链接 */ public function getSingleAuthorizeUrl($redirect_url = "",$state = '1') { $redirect_url = urlencode($redirect_url); return "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" . $this->wechat_config['appid'] . "&redirect_uri=".$redirect_url."&response_type=code&scope=snsapi_userinfo&state={$state}#wechat_redirect"; } /** * 获取token * @return [type] 返回token */ public function getSingleAccessToken($code) { $url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$this->wechat_config['appid'].'&secret='.$this->wechat_config['appsecret'].'&code='.$code.'&grant_type=authorization_code'; $access_token = $this->https_request($url); return $access_token; } /** * 发送curl请求 * @param $url string * @param return array|mixed */ public function https_request($url) { $curl = curl_init(); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $AjaxReturn = curl_exec($curl); //获取access_token和openid,转换为数组 $data = json_decode($AjaxReturn,true); curl_close($curl); return $data; } /** * @explain * 通过code获取用户openid以及用户的微信号信息 * @return array|mixed * @remark * 获取到用户的openid之后可以判断用户是否有数据,可以直接跳过获取access_token,也可以继续获取access_token * access_token每日获取次数是有限制的,access_token有时间限制,可以存储到数据库7200s. 7200s后access_token失效 **/ public function getUserInfo($access_token = []) { if(!$access_token){ return [ 'code' => 0, 'msg' => '微信授权失败', ]; } $userinfo_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token['access_token'].'&openid='.$access_token['openid'].'&lang=zh_CN'; $userinfo_json = $this->https_request($userinfo_url); //获取用户的基本信息,并将用户的唯一标识保存在session中 if(!$userinfo_json){ return [ 'code' => 0, 'msg' => '获取用户信息失败!', ]; } return $userinfo_json; } }
Controller call
public function index() { $wchat = new \wechat\WechatOauth(); $code = request()->param('code',""); $user = $wchat->getUserAccessUserInfo($code); }
Related recommendations:
The code for adding, deleting, modifying and querying operations in the TP data layer
The method (code) of using native MySQL statements in TP
The above is the detailed content of Code implementation of WeChat authorized login under TP5 framework. For more information, please follow other related articles on the PHP Chinese website!

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
