服务器端用python自动回复客服消息,josn格式,中文只有一个字时可以收到,多写几个字就收不到?反复验证多次,这是怎么回事,求解!谢谢
replyurl='https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='+at
replydata={
'touser':data['FromUserName'],
'msgtype':'text',
'text':{
'content':'好好'
}
}
replydata=json.dumps(replydata,ensure_ascii=False)
headers = {'Content-Type': 'application/json'}
reload(sys)
sys.setdefaultencoding('utf-8')
r=requests.post(replyurl,data=replydata,headers=headers)