真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

django微信網(wǎng)頁(yè)授權(quán)認(rèn)證api的示例分析-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)django微信網(wǎng)頁(yè)授權(quán)認(rèn)證api的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)公司專注于企業(yè)全網(wǎng)營(yíng)銷推廣、網(wǎng)站重做改版、淮濱網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5、成都商城網(wǎng)站開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為淮濱等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

微信網(wǎng)頁(yè)授權(quán)認(rèn)證

根據(jù)微信官方文檔,網(wǎng)頁(yè)授權(quán)需要四個(gè)步驟,

- 用戶同意授權(quán)-獲取code
- 通過(guò)code 獲取網(wǎng)頁(yè)授權(quán)access_token
- 通過(guò)code 獲取網(wǎng)頁(yè)授權(quán)access_token
- 刷新token
- 拉去用戶信息scope為snsapi_userinfo
-檢驗(yàn)授權(quán)憑證 access_token是否有效

1 授權(quán)

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

這是授權(quán)地址

scope=snsapi_userinfo

彈出授權(quán)頁(yè)面,可以通過(guò)`openid`獲取到昵稱,頭像,用戶信息,不需要關(guān)注就能獲取用戶信息

scope=snsapi_base

不彈出頁(yè)面,直接跳轉(zhuǎn),只能獲取openid1

def r_oauth(request):
  #授權(quán)
  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"
  # 通過(guò)code 可以獲取到access_token ,但是code 只能獲取道一次獲取token 的時(shí)候可能要刷新,不然會(huì)獲取不到token
 data=requests.get(token_url.format(app_id,app_secret,code))
 #轉(zhuǎn)為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過(guò)期解決
  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))
  # 設(shè)置cookie 將用戶信息保存到cookie里面
  response.set_cookie("userinfo",json.dumps(d),max_age=7 * 24 * 3600) # 設(shè)置過(guò)期時(shí)間7 天
  return response

當(dāng)前在這之前需要進(jìn)行公眾號(hào)配置,微信網(wǎng)頁(yè)授權(quán)開發(fā)文檔

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

url 也要配置

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

關(guān)于“django微信網(wǎng)頁(yè)授權(quán)認(rèn)證api的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。


當(dāng)前文章:django微信網(wǎng)頁(yè)授權(quán)認(rèn)證api的示例分析-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)地址:http://weahome.cn/article/docsss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部