itchatmp icon indicating copy to clipboard operation
itchatmp copied to clipboard

A complete and graceful API for wechat mp. 完备优雅的微信公众号接口,原生支持同步、协程使用。

Results 36 itchatmp issues
Sort by recently updated
recently updated
newest added

查看了一下源码 似乎是没有封装这个功能吗?有木有办法能实现呢。。

I think this is helpful for somebody. Tian

when too many request are being posted at the same time the following warning shows ``` python Connection pool is full, discarding connection ``` this fixes the warning by increasing...

#28 added CIDR format support Tian

请问itchatmp能回复的内容是不是只包含IMAGE, VOICE, VIDEO, TEXT, NEWS, CARD,能否简单介绍一下IMAGE图片格式以及NEWS该如何发送,代码看的不是很懂。 多谢了。 是否可以发送doc文件。

现在 永久/临时 二维码都支持 `str`和 `int` 的参数值了 > 二维码类型,QR_SCENE为临时的整型参数值,QR_STR_SCENE为临时的字符串参数值,QR_LIMIT_SCENE为永久的整型参数值,QR_LIMIT_STR_SCENE为永久的字符串参数值 \>_

过滤非微信服务器信息 ```python itchatmp.update_config(filterRequest=True) ``` 使用以后 微信公众号不能被动回复了。

更新token以后 会报错 ```python #Wechat Auto Reply logic @itchatmp.msg_register(itchatmp.content.TEXT) def text_reply(msg): if(msg['Content'].isdigit() and len(msg['Content']) == 5): return addjob(msg['FromUserName'],msg['Content']) WrongCRN = [u'好像没有这个课号呢!课号一般是5位数。',u'难受!没这个课号!再试试其他的吧!',u'逗我呢?',u'你**在给我free style吗?'] return random.choice(WrongCRN) @itchatmp.access_token def producer(accessToken=None): while(1): if hasUpdated(): itchatmp.send(str(datetime.datetime.now()),'oO3tH0e3rt_j85k3ASkztTBM8Mec')...