implicit grant type with django oauth
After reading about authentication flows for different clients, the suggested grant type for single-page application should be implicit.
However, there is no good documentation for using implicit grant types in Django OAuth-toolkit.
Here is how thought it works: 1. register the client as public, authorization grant type implicit and specify a redirect uri 2. 'curl -X POST -d "grant_type:implicit&username:&password:" -u "" http://localhost:8000/o/token/' 3. recieve the access token at the redirect uri
Maybe someone could clearify how implicit grant types should be handled.
链接地址: http://www.djcxy.com/p/47990.html上一篇: 哪一层检查隐式授权OAuth 2.0流中的访问令牌?
下一篇: 用django oauth隐式授予类型