Table of Contents
WeChat open platform obtains component_verify_ticket, cas client obtains ticket
Home Backend Development PHP Tutorial WeChat open platform obtains component_verify_ticket, cas client obtains ticket_PHP tutorial

WeChat open platform obtains component_verify_ticket, cas client obtains ticket_PHP tutorial

Jul 12, 2016 am 08:52 AM
open platform

WeChat open platform obtains component_verify_ticket, cas client obtains ticket

Official document description:

After the public account is created and approved by the third-party platform, the WeChat server will regularly push component_verify_ticket to its "Authorization Event Receiving URL" every 10 minutes. The third-party platform also needs to decrypt the ticket push after receiving it (see [Message Encryption and Decryption Access Guidelines] for details), and must directly return the string success after receiving it.

The first step is to instantiate the class WXBizMsgCrypt provided by WeChat and pass in the parameters of the development platform.

<span><span>$pc</span> = <span>new</span> WXBizMsgCrypt(WxPayConfig::Token, WxPayConfig::EncodingAesKey, WxPayConfig::open_AppID);</span>
Copy after login

When WeChat Open Platform obtains component_verify_ticket, in addition to obtaining the timestamp nonce encrypt_type msg_sign four parameters through GET, it also needs to obtain the postdata encryption parameter (encryptMsg) through file_get_contents('php://input').

The obtained $encryptMsg is data in Xml format. The data under the Encrypt node needs to be extracted as follows:

<span><span>1</span> <span>$xml_tree</span> = <span>new</span><span> DOMDocument();
</span><span>2</span> <span>$xml_tree</span>->loadXML(<span>$encryptMsg</span><span>);
</span><span>3</span> <span>$array_e</span> = <span>$xml_tree</span>->getElementsByTagName('Encrypt'<span>);
</span><span>4</span> <span>$encrypt</span> = <span>$array_e</span>->item(0)->nodeValue;</span>
Copy after login

Next, you need to substitute the obtained ciphertext into another piece of >$encrypt is in Xml format and then extracts the method provided by WeChat again )

<span>1</span> <span>$format</span> = "<xml><ToUserName><![CDATA[toUser]]></ToUserName><Encrypt><![CDATA[%s]]></Encrypt></xml>"<span>;</span>
<span>2</span> <span>$from_xml</span> = <span>sprintf</span>(<span>$format</span>, <span>$encrypt</span>);
Copy after login
Now you can call the decryptMsg function to decrypt

<span><span> 1</span> <span>$msg</span> = ''<span>;
</span><span> 2</span> 
<span> 3</span> <span>$errCode</span> = <span>$pc</span>->decryptMsg(<span>$msg_sign</span>, <span>$timeStamp</span>, <span>$nonce</span>, <span>$from_xml</span>, <span>$msg</span><span>);
</span><span> 4</span> 
<span> 5</span> <span>if</span> (<span>$errCode</span> == 0<span>) {
</span><span> 6</span> <span>//</span><span>由于返回的也是Xml格式的数据 所以这里再次提取ComponentVerifyTicket节点中的内容</span>
<span> 7</span> <span>$xml</span> = <span>new</span><span> DOMDocument();
</span><span> 8</span> <span>$xml</span>->loadXML(<span>$msg</span><span>);
</span><span> 9</span> <span>$array_e</span> = <span>$xml</span>->getElementsByTagName('ComponentVerifyTicket'<span>);
</span><span>10</span> <span>$component_verify_ticket</span> = <span>$array_e</span>->item(0)-><span>nodeValue;
</span><span>11</span> <span>//</span><span>获取到了$component_verify_ticket后就可以进行写入数据存储了</span>
<span>12</span> <span>echo</span> "success"<span>;
</span><span>13</span> }<span>else</span><span>{
</span><span>14</span> <span>echo</span> <span>$errCode</span><span>;
</span><span>15</span> }</span>
Copy after login
Now you have obtained component_verify_ticket.

All codes:

<span>require_once ("wxBizMsgCrypt.php");<br />public</span> <span>function</span><span> index()
    {    

        </span><span>$timeStamp</span>    =<span>$_GET</span>['timestamp'<span>];
        </span><span>$nonce</span>        =<span>$_GET</span>['nonce'<span>];
        </span><span>$encrypt_type</span> =<span>$_GET</span>['encrypt_type'<span>];
        </span><span>$msg_sign</span>     =<span>$_GET</span>['msg_signature'<span>];
        </span><span>$encryptMsg</span>   =<span>file_get_contents</span>('php://input'<span>);
        
        </span><span>$result</span> = <span>$this</span>->getVerify_Ticket(<span>$timeStamp</span>,<span>$nonce</span>,<span>$encrypt_type</span>,<span>$msg_sign</span>,<span>$encryptMsg</span><span>);

        </span><span>if</span>(<span>$result</span><span>){
            </span><span>echo</span> "success"<span>;
        }

    }


 </span><span>//</span><span>获取component_verify_ticket</span>
 <span>public</span> <span>function</span> getVerify_Ticket(<span>$timeStamp</span>,<span>$nonce</span>,<span>$encrypt_type</span>,<span>$msg_sign</span>,<span>$encryptMsg</span><span>){

        </span><span>$pc</span> = <span>new</span> WXBizMsgCrypt(WxPayConfig::Token, WxPayConfig::EncodingAesKey, WxPayConfig::<span>open_AppID);

        </span><span>$xml_tree</span> = <span>new</span><span> DOMDocument();
        </span><span>$xml_tree</span>->loadXML(<span>$encryptMsg</span><span>);
        </span><span>$array_e</span> = <span>$xml_tree</span>->getElementsByTagName('Encrypt'<span>);
        </span><span>$encrypt</span> = <span>$array_e</span>->item(0)-><span>nodeValue;

        </span><span>$format</span> = "<xml><ToUserName><![CDATA[toUser]]></ToUserName><Encrypt><![CDATA[%s]]></Encrypt></xml>"<span>;

        </span><span>$from_xml</span> = <span>sprintf</span>(<span>$format</span>, <span>$encrypt</span><span>);

        </span><span>$msg</span> = ''<span>;

        </span><span>$errCode</span> = <span>$pc</span>->decryptMsg(<span>$msg_sign</span>, <span>$timeStamp</span>, <span>$nonce</span>, <span>$from_xml</span>, <span>$msg</span><span>);

        </span><span>if</span> (<span>$errCode</span> == 0<span>) {

            </span><span>$xml</span> = <span>new</span><span> DOMDocument();
            </span><span>$xml</span>->loadXML(<span>$msg</span><span>);
            </span><span>$array_e</span> = <span>$xml</span>->getElementsByTagName('ComponentVerifyTicket'<span>);

            </span><span>$component_verify_ticket</span> = <span>$array_e</span>->item(0)-><span>nodeValue;
            DB</span>::getDB()->delete("wechat_verifyticket",'uptime!=1'<span>);
            DB</span>::getDB()->insert("wechat_verifyticket",<span>array</span><span>(
                </span>'component_verify_ticket'    => <span>$component_verify_ticket</span>,
                'uptime'                    => <span>time</span><span>()));

            </span><span>return</span> <span>true</span><span>;
        }</span><span>else</span><span>{
            DB</span>::getDB()->delete("wechat_verifyticket",'uptime!=1'<span>);
            DB</span>::getDB()->insert("wechat_verifyticket",<span>array</span><span>(
                </span>'component_verify_ticket'    => <span>$errCode</span>,
                'uptime'                    => <span>time</span><span>()));
            </span><span>return</span> <span>false</span><span>;
        }

    }</span>
Copy after login

http://www.bkjia.com/PHPjc/1125992.html

truehttp: //www.bkjia.com/PHPjc/1125992.htmlTechArticleThe WeChat open platform obtains component_verify_ticket, and the cas client obtains the ticket. Official document description: Create and approve on the public account third-party platform Afterwards, the WeChat server will authorize the event to it...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

See all articles