中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

django微信網頁授權認證api的示例分析

發布時間:2021-08-25 09:32:10 來源:億速云 閱讀:131 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關django微信網頁授權認證api的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

微信網頁授權認證

根據微信官方文檔,網頁授權需要四個步驟,

- 用戶同意授權-獲取code
- 通過code 獲取網頁授權access_token
- 通過code 獲取網頁授權access_token
- 刷新token
- 拉去用戶信息scope為snsapi_userinfo
-檢驗授權憑證 access_token是否有效

1 授權

url="https://open.weixin.qq.com/connect/oauth3/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_userinfo&state=openid_required#wechat_redirect"1

這是授權地址

scope=snsapi_userinfo

彈出授權頁面,可以通過`openid`獲取到昵稱,頭像,用戶信息,不需要關注就能獲取用戶信息

scope=snsapi_base

不彈出頁面,直接跳轉,只能獲取openid1

def r_oauth(request):
  #授權
  url="https://open/weixin.qq.com/connect/oauth3/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_userifo&state=openid_required#wechat_redirect"
  redirect_uri="http://pypages.gongchang.com/user/"
  redirect_uri=urllib.quote(redirect_uri)
  return redirect(url.format(app_id,redirect_uri) #format拼接url
def get_userinfo(request):
 #獲取用戶信息
 code=request.GET.get("code")
 if not code:
  return HttpResponse("not find code")
 token_url="https://api.weixin.qq.com/sns/oauth3/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code"
  # 通過code 可以獲取到access_token ,但是code 只能獲取道一次獲取token 的時候可能要刷新,不然會獲取不到token
 data=requests.get(token_url.format(app_id,app_secret,code))
 #轉為json 格式的字符串
 data=json.loads(data.content.decode("utf-8"))
 #獲取access_token
 access_token=data['access_token']
 open_id=data['openid']
 refresh_token=data['refresh_token']
 if not access_token or not open_id:
  return None # 判斷是否有token 和open_id
 # 用戶的url
 user_url="https://api.weixin.qq.com/sns/userinfo?access_token={0}&openid={1}&lang=zh-CN"
 d=requests.get(user_url.format(access_token,open_id)
 d=d.content.decode("utf-8")
 if not d:
  return None
 d=json.loads(d)
 if d.has_key("errcode") and d["errcode"]==40001:
  #token過期解決
  refresh_toekn_url="https://api.weixin.qq.com/sns/oauth3/refresh_token?appi={0}&grant_type=refresh_type=refresh_token&refresh_token={1}"
  r_d=requests.get(refresh_token_url.format(app_id,refresh_token))
  r_d=json.loads(r_d.content.decode("utf-8"))
  access_token=r_d["access_token"]
  d=requests.get(user_url.format(access_token,open_id))
  d=d.content.decode("utf-8")
  response=HttpResponse(json.dumps(d))
  # 設置cookie 將用戶信息保存到cookie里面
  response.set_cookie("userinfo",json.dumps(d),max_age=7 * 24 * 3600) # 設置過期時間7 天
  return response

當前在這之前需要進行公眾號配置,微信網頁授權開發文檔

在django 里面我們需要配置appid 和app_secret

url 也要配置

url(r'^r_oauth/$', views.r_oauth), # 授權 
 url(r'^user/$', views.get_user_info), # 獲取用戶信息

關于“django微信網頁授權認證api的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

固阳县| 东宁县| 怀柔区| 类乌齐县| 宜兰县| 长泰县| 孝昌县| 陵水| 津市市| 曲靖市| 扶余县| 西乌珠穆沁旗| 根河市| 安乡县| 石嘴山市| 常宁市| 马尔康县| 句容市| 安化县| 迭部县| 池州市| 彭山县| 麻栗坡县| 灵丘县| 长兴县| 绥滨县| 永新县| 青田县| 阜宁县| 称多县| 嵊泗县| 江川县| 瑞金市| 共和县| 新余市| 建湖县| 自贡市| 浦县| 江安县| 长春市| 甘谷县|