Python实现企业微信接收消息之API验证部分

一、首先点开配置界面如下:
 
Python实现企业微信接收消息之API验证部分_第1张图片
 
第一行填入我们的代码接口
第二行、三行可以自动生成或者手动指定均可。
然后勾选下面的事件,然后先不保存。
 
二、准备代码
 
实现Get请求的接口:
@app.route('/xxxx/receive_task', methods=['POST','GET'])
def receive():
    try:
        msg_signature = request.args.get('msg_signature')
        timestamp = request.args.get('timestamp')
        nonce = request.args.get('nonce')
        echostr = request.args.get('echostr')
        auth_verify = AuthVerify()
        s_echo_str = auth_verify.verifi(msg_signature, timestamp, nonce, echostr)
        return s_echo_str
    except Exception as e:
        print(e)
        ret

你可能感兴趣的:(Python)