python3 urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get loca

问题描述

使用python3发送微信消息时,提示错误:

# python3 pyweixin.py CORPID CORPSECRET APPID 联系人 消息内容
<class 'Exception'> : <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>

解决办法:

编辑文件:pyweixin.py,添加内容:

import ssl
ssl._create_default_https_context = ssl._create_unverified_context

你可能感兴趣的:(python,python,企业微信,urlopen)