Rumah > Soal Jawab > teks badan
itchat.send_msg('Hello world')
<ItchatReturnValue: {u'MsgID': u'', u'LocalID': u'', u'BaseResponse': {u'ErrMsg': u'', u'Ret': 1204, 'RawMsg': u''}}>
Tidak boleh menghantar mesej kepada diri sendiri
itchat.send('hello',toUserName = User)
Anda tidak boleh menghantarnya kepada orang lain (Pengguna ialah ID WeChat )
仅有的幸福2017-06-12 09:27:00
#想给谁发信息,先查找到这个朋友
users = itchat.search_friends(name=u'通讯录备注名')
#找到UserName
userName = users[0]['UserName']
#然后给他发消息
itchat.send('hello',toUserName = userName)
Atau hantar terus dengan pengguna ini
user = itchat.search_friends(name=u'通讯录备注名')[0]
user.send(u'机器人say hello')