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

若如初见. 提交于 2020-01-20 18:51:43
一、首先点开配置界面如下:
 
 
第一行填入我们的代码接口
第二行、三行可以自动生成或者手动指定均可。
然后勾选下面的事件,然后先不保存。
 
二、准备代码
 
实现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
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!