微信公众平台网页授权获取用户信息python封装
Project description
微信网页授权获取用户信息封装
=====
对微信网页授权获取用户信息接口的封装
* 生成授权URL
* 获取access_token
* 刷新access_token
* 获取用户信息
微信文档
---
[http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html](http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html)
使用方式
===
```
from wechat_web_auth import Wechat
wc = Wechat(app_id, secret)
def connect(request):
url = wc.get_connect_url("http://redirect.url/)
return redirect(url)
def callback(request):
resp = wc.get_access_token(self, request.GET.get('code'))
access_token = resp.access_token
userinfo = wc.get_userinfo(access_token)
return HttpResponse("nickname:" + userinfo.nickname)
```
=====
对微信网页授权获取用户信息接口的封装
* 生成授权URL
* 获取access_token
* 刷新access_token
* 获取用户信息
微信文档
---
[http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html](http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html)
使用方式
===
```
from wechat_web_auth import Wechat
wc = Wechat(app_id, secret)
def connect(request):
url = wc.get_connect_url("http://redirect.url/)
return redirect(url)
def callback(request):
resp = wc.get_access_token(self, request.GET.get('code'))
access_token = resp.access_token
userinfo = wc.get_userinfo(access_token)
return HttpResponse("nickname:" + userinfo.nickname)
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distributions
File details
Details for the file wechat_web_auth-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: wechat_web_auth-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78b90bd0d42f2037343ead21960dc969b3efef0d41538b3e040fd5c074658c40 |
|
MD5 | 607694ba7e7f733297f551baebbcd93a |
|
BLAKE2b-256 | 48f29911e2b6bde4544e7d929a03da7f34178cc587a4925be89d87c05e27333c |
File details
Details for the file wechat_web_auth-0.1.1-py2-none-any.whl
.
File metadata
- Download URL: wechat_web_auth-0.1.1-py2-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b049fee6cb3fccc5316a5980573a6041e4e87aadb36505549c7c61cdcb976d1 |
|
MD5 | 424f28d7fcb1d64039b401a5a5c92c56 |
|
BLAKE2b-256 | d385645d7b4716693e5fabc4114a3c902657a010d2659c7abde416b538c8f8db |