扫码关注官方订阅号
itchat.send_msg('Hello world')
不能发给自己信息
itchat.send('hello',toUserName = User)
发给别人也不行( User 是一个微信号 )
#想给谁发信息,先查找到这个朋友 users = itchat.search_friends(name=u'通讯录备注名') #找到UserName userName = users[0]['UserName'] #然后给他发消息 itchat.send('hello',toUserName = userName)
或者每直接用这个用户发送
user = itchat.search_friends(name=u'通讯录备注名')[0] user.send(u'机器人say hello')
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
或者每直接用这个用户发送