Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2335565
  • 博文数量: 168
  • 博客积分: 3184
  • 博客等级: 中校
  • 技术积分: 3959
  • 用 户 组: 普通用户
  • 注册时间: 2009-05-12 18:57
文章存档

2019年(1)

2018年(2)

2017年(3)

2016年(15)

2015年(10)

2014年(60)

2011年(1)

2010年(76)

分类: Web开发

2019-02-19 10:36:10

import hashlib
@main.route('/')
def index():
    wxtoken = '5tgb6yhn7ujm'
    signature = request.args.get('signature')
    timestamp = request.args.get('timestamp')
    nonce = request.args.get("nonce");
    tmparr = [wxtoken, timestamp, nonce]
    tmparr.sort()
    tmpstr = ''.join(tmparr)
    tmpstr = hashlib.sha1(tmpstr).hexdigest()
    if tmpstr == signature:
        return request.args.get('echostr')
    else:
        return ''
阅读(1220) | 评论(0) | 转发(0) |
0

上一篇:starUML破解方法

下一篇:没有了

给主人留下些什么吧!~~