Skip to content

Instantly share code, notes, and snippets.

@suanmiao
Last active August 29, 2015 13:56
Show Gist options
  • Save suanmiao/8801487 to your computer and use it in GitHub Desktop.
Save suanmiao/8801487 to your computer and use it in GitHub Desktop.

#微信公众平台

##获取消息列表:

###1. 获取消息列表第一页

####url:

https://mp.weixin.qq.com/cgi-bin/message?t=message/list&count=20&day=7&token=1230215453&lang=zh_CN

https://mp.weixin.qq.com/cgi-bin/message?t=message/list&action=&keyword=&frommsgid=200004425&offset=20&count=20&day=7&filterivrmsg=&token=1230215453&lang=zh_CN

###2. 获取星标消息:

####url:

https://mp.weixin.qq.com/cgi-bin/message?t=message/list&count=20&action=star&token=1230215453&lang=zh_CN&filterivrmsg=1

https://mp.weixin.qq.com/cgi-bin/message?t=message/list&action=&keyword=&count=20&day=7&filterivrmsg=0&token=1230215453&lang=zh_CN

###3. 获取列表其他页

####url: https://mp.weixin.qq.com/cgi-bin/message?t=message/list&action=&keyword=&frommsgid=200004425&offset=20&count=20&day=7&filterivrmsg=0&token=1230215453&lang=zh_CN

###总结:

####get 方法参数:

t : message/list action : keyword : count : 20 day : 0/1/2/3/7

frommsgid : filterivrmsg : 0/1 token : lang : zh_CN

##获取图片

####URL: https://mp.weixin.qq.com/cgi-bin/getimgdata?token=1230215453&msgid=200004557&mode=small&source=&fileId=0&ow=-355421076

####Referer:

https://mp.weixin.qq.com/cgi-bin/singlesendpage?tofakeid=355421075&t=message/send&action=index&token=1230215453&lang=zh_CN

####Params:

token : 1230215453 msgid : 200004557 mode : small source : fileId : 0 ow : -355421076

####URL: https://mp.weixin.qq.com/cgi-bin/getimgdata?&token=1230215453&lang=zh_CN&mode=small&source=biz&msgid=100009729&fileId=10000020

####Referer: https://mp.weixin.qq.com/cgi-bin/singlesendpage?tofakeid=355421075&t=message/send&action=index&token=1230215453&lang=zh_CN

token : 1230215453 lang : zh_CN mode : small source : biz msgid : 100009729 fileId : 10000020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment