Skip to content

Python3pkg/Flask-WX-OAuth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-WX-OAuth

使用方式:

wx_oauth = WXOAuth()
wx_oauth.init_app(app)

配置 WX_APPID 和 WX_SECRET

在view中调用:

next = request.args.get('next', '/')
redirect_uri = url_for('.authorized', next=next, _external=True)
params = {
    'redirect_uri': redirect_uri,
    'scope': 'snsapi_base',
}
return redirect(wx_oauth.get_authorize_url(**params))

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%