# Verification bill
初始值_verify_Ticket), after the third-party platform is created and approved, WeChat will send it to the "Authorization Event Receive URL" at intervals of 10 Minutes to POST
The way to push component_verify_ticket
receive POST
Request, simply return the character string success
. To enhance security, postdata to hit the target xml Will use encryption and decryption at the time of the service request key To encrypt, seeEncryption and Decryption Technology Program, Decryption is required after receiving the push (seeMessage Encryption and Decryption Access Guide)。
Note:
- component_verify_ticket The effective time is 12 hours, than the component_access_Token Longer, it is recommended to save the most recently available component_verify_Ticket, in component_access_Token You can use it before it expires. component_verify_ticket To update and avoid the appearance of component_verify_ticket Failed to receive updates component_access_Token The situation.
# Dxplaination of parameters
parameter | type | Field Description |
---|---|---|
AppId | string | Third-Party Platforms appid |
CreateTime | number | Time stamp, unit: s |
InfoType | string | Fixed as: " component_verify_ticket" |
ComponentVerifyTicket | string | Ticket content |
Example after the push content is decrypted:
<xml>
<AppId>some_appid</AppId>
<CreateTime>1413192605</CreateTime>
<InfoType>component_verify_ticket</InfoType>
<ComponentVerifyTicket>some_verify_ticket</ComponentVerifyTicket>
</xml>