Acquiring two-dimensional micro-letter code

Acquiring two-dimensional micro-letter code

Micro-channel landing page address:

path('webChat/',views.webchat,name="webchat"),

1, to find the address of the two-dimensional code:

2, two-dimensional code acquired address with the value:


3, the two-dimensional micro-channel acquisition code code the following

3.1 front page templates / webchat.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Wechat</title>
</head>
<body>
    <div style="width: 300px;margin: 0 auto;">
        <img id="qcode"  style="width: 300px;height: 300px;" src="https://login.weixin.qq.com/qrcode/{{code}}"/>
    </div>
</body>
</html>

3.2 two-dimensional code rear Request another value uuid, web / views.py


# Create your views here.
from django.shortcuts import render
from django.shortcuts import HttpResponse
import requests
import re
import time
VERIFY_TIME =None
verifi_uuid =None

def webchat(request):
    #获取验证码的url
    verificode_url = "https://login.wx.qq.com/jslogin?appid=wx782c26e4c19acffb&redirect_uri=https%3A%2F%2Fwx.qq.com%2Fcgi-bin%2Fmmwebwx-bin%2Fwebwxnewloginpage&fun=new&lang=zh_CN&_={0}"
    verifi_reponse =requests.get(url=verificode_url)
    #print(verifi_reponse.text)
    #时间戳
    global VERIFY_TIME
    VERIFY_TIME = str(time.time())
    verificode_url.format(VERIFY_TIME)
    global verifi_uuid
    #匹配二维码另一个值
    verifi_uuid=re.findall('uuid = "(.*)";',verifi_reponse.text)[0]
    return render(request,"webchat.html",{"code":verifi_uuid,
                                          })

Guess you like

Origin www.cnblogs.com/venvive/p/11564811.html