


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!

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-

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.

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' =>

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

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot


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

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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),
