- Video组件全屏时,Android系统不会根据视频宽高自动判断横竖屏
video组件,不设置direction属性,点击全屏时,Android系统上没有根据视频的宽高自动进行判断横屏还是竖屏,在ios系统上是可以的。望尽快修复,或者给出解答方法
2018-04-20 - 手机收到的客服消息是乱码 (python)
直接用json出来的结果是unicode乱码, 在json.dumps时将ensure_ascii设置为False, 微信接口返回44004, 如下: {"msgtype": "text", "touser": "oG9sf0ed4g7XNw7DdS-j8R1ViBIM", "text": {"content": "您好, 很高兴接收您的反馈,感谢您对我们的支持。"}} {"errcode":44004,"errmsg":"empty content hint: [wed2KA0756ge20]"} python怎么处理????
2017-12-21 - 服务器端用python自动回复客服消息,josn格式,中文收不到
服务器端用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)
2018-04-08 - 使用官方提供python demo解密 getPhoneNumber 数据时报错
你想反馈一个 Bug 还是 提一个需求? 如果是 Bug: class WXBizDataCrypt: def __init__(self, appId, sessionKey): self.appId = appId self.sessionKey = sessionKey def decrypt(self, encryptedData, iv): # base64 decode sessionKey = base64.b64decode(self.sessionKey) encryptedData = base64.b64decode(encryptedData) iv = base64.b64decode(iv) cipher = AES.new(sessionKey, AES.MODE_CBC, iv) print('cipher is',str(self._unpad(cipher.decrypt(encryptedData)))) decrypted = json.loads(self._unpad(cipher.decrypt(encryptedData))) if decrypted['watermark']['appid'] != self.appId: raise Exception('Invalid Buffer') return decrypted def _unpad(self, s): return s[:-ord(s[len(s)-1:])] json.loads 时报错: [图片] 也不能 decode('utf-8')
2018-01-06