微信消息的ToUserName与FromUserName

2019-10-22 12:57:26

ToUserName与FromUserName的意思

在接收到微信推送的消息中tousername、fromusername的顺序与平台返回给微信(即要发送给微信用户)的交互信息中tousername、fromusername的值是相反的

  • 接受到的消息中:tousername=开发者公众号,fromusername=openid
  • 发送给微信的消息中:tousername=openid,fromusername=开发者的公账号

收包消息模板:


<xml>
  <ToUserName><![CDATA[微信开发者公众号-公众号的微信号]]></ToUserName>
  <FromUserName><![CDATA[fromUser]]></FromUserName>
  <CreateTime>1348831860</CreateTime>
  <MsgType><![CDATA[text]]></MsgType>
  <Content><![CDATA[this is a test]]></Content>
  <MsgId>1234567890123456</MsgId>
</xml>

发包消息模板:


<xml>
  <ToUserName><![CDATA[openid]]></ToUserName>
  <FromUserName><![CDATA[微信开发者公众号-公众号的微信号]]></FromUserName>
  <CreateTime>12345678</CreateTime>
  <MsgType><![CDATA[text]]></MsgType>
  <Content><![CDATA[你好]]></Content>
</xml>
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-ND 3.0 许可协议。可自由转载、引用,但需署名作者且注明文章出处。如转载至微信公众号,请在文末添加作者公众号二维码。

扫描下方二维码阅读当前文章

浏览器、微信扫码

评 论:

好文推荐
每天进步一点点~