DJANGO获得访问令牌

时间:2018-04-22 14:17:20

标签: django python-3.x oauth-2.0

当我使用用户名和密码运行第一次登录API时,将获得客户端ID和密码。使用o / token api我将获得访问令牌,o / token params如下:

 grant_type=password username={{emailid}} password={{password}} client_id={{client id}} client_secret={{client secret}}

是否可以在o / token / api中使用用户名和密码来获取访问令牌?使用唯一的client_id和客户机密码,我可以获得访问令牌和刷新令牌???

1 个答案:

答案 0 :(得分:0)

终于得到了解决方案!!!!!!

我们必须使用oauth2 client_credentials grant类型而不是密码类型。有关详情,请查看此问题 - https://tools.ietf.org/html/rfc6749#section-4.4