WeChat develops interfaces and parameters for receiving picture messages

Y2J
Release: 2017-05-18 12:01:29
Original
2784 people have browsed it

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.

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 Message-Passive Reply to Message".

3. If the developer needs to respond immediately to the user message within 5 seconds, that is, use the "Send Message-Passive Reply Message" interface to passively respond to the user When replying to a message, you can set 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 developers send them to users through customer service

interfaces and other API calls) messages are not affected). For detailed instructions on message encryption and decryption, please see "Sending Messages - Passive Reply Message Encryption and Decryption Instructions".

WeChat accepts picturesMessage interface and parameters:

<xml>
 <ToUserName><![CDATA[toUser]]></ToUserName>
 <FromUserName><![CDATA[fromUser]]></FromUserName>
 <CreateTime>1348831860</CreateTime>
 <MsgType><![CDATA[image]]></MsgType>
 <PicUrl><![CDATA[this is a url]]></PicUrl>
 <MediaId><![CDATA[media_id]]></MediaId>
 <MsgId>1234567890123456</MsgId>
 </xml>
Copy after login

WeChat develops interfaces and parameters for receiving picture messages

[Related recommendations]

1. WeChat public account platform source code download

2. Xiaozhu CMS Lifetong O2O system v2.0 exclusive version download

3. Little Pigcms (pigcms) WeChat Marketing System V8.52 Pinhaohao Mall Secondary Development Special Edition

The above is the detailed content of WeChat develops interfaces and parameters for receiving picture messages. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!