Home > Article > WeChat Applet > WeChat develops interfaces and parameters for receiving video messages
Receive ordinary messages
When an ordinary WeChat user sends a message to a public account, the WeChat server will POST the XML data packet of the message to the URL filled in by the developer superior.
Please note:
1. Regarding retry message duplication, it is recommended to use msgid to deduplicate messages.
2. If the WeChat server does not receive a response within five seconds, it will disconnect and re-initiate the request, retrying three times in total. If the server cannot guarantee to process and reply within five seconds,
can directly reply with an empty string. The WeChat server will not do anything with this and will not initiate a retry. For details, please see "Send a Message - Passive Reply to a Message".
3. If the developer needs to respond immediately to the user's message within 5 seconds, that is, when using the "Send Message-Passive Reply Message" interface to passively reply to the user's message, you can
Set up message encryption in the Developer Center of the official website of the public platform. After encryption is turned on, messages sent by users and messages replied by developers will be encrypted (but if developers send messages to users through API calls such as the customer service
interface, they will not be affected. ). For detailed instructions on message encryption and decryption, please see "Sending Messages - Passive Reply Message Encryption and Decryption Instructions".
##Video message
<xml> <ToUserName><![CDATA[toUser]]></ToUserName> <FromUserName><![CDATA[fromUser]]></FromUserName> <CreateTime>1357290913</CreateTime> <MsgType><![CDATA[video]]></MsgType> <MediaId><![CDATA[media_id]]></MediaId> <ThumbMediaId><![CDATA[thumb_media_id]]></ThumbMediaId> <MsgId>1234567890123456</MsgId> </xml>
小视频Message
<xml> <ToUserName><![CDATA[toUser]]></ToUserName> <FromUserName><![CDATA[fromUser]]></FromUserName> <CreateTime>1357290913</CreateTime> <MsgType><![CDATA[shortvideo]]></MsgType> <MediaId><![CDATA[media_id]]></MediaId> <ThumbMediaId><![CDATA[thumb_media_id]]></ThumbMediaId> <MsgId>1234567890123456</MsgId> </xml>【Related recommendations】1.
WeChat public account Platform source code download
2.Little Pigcms (PigCms) micro-e-commerce system operating version (independent micro-store mall + three-level distribution system)
3 .WeChat Network King v3.4.5 Advanced Commercial Edition WeChat Rubik’s Cube Source Code
The above is the detailed content of WeChat develops interfaces and parameters for receiving video messages. For more information, please follow other related articles on the PHP Chinese website!