Django OAuth2 unsupported_grant_type [英] Django OAuth2 unsupported_grant_type

查看:72
本文介绍了Django OAuth2 unsupported_grant_type的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用django发送请求,以使用OAuth2从我的api获取access_token.我正在执行此代码:

I'm trying to send a request with django to get an access_token from my api using OAuth2. I'm executing this code :

data = {'username': 'admin', 'password': '123123', 'grant_type': 
'password','client_id': 'xxx','client_secret': 'xxx'}
headers = {'content-type': 'application/x-www-form-urlencoded'}
r = requests.post(url, data=data, headers=headers)

当我发送此请求时,出现此错误:

When I send this request I get this error :

{'错误':'unsupported_grant_type'}

{'error': 'unsupported_grant_type'}

感谢您的帮助!

推荐答案

如果有人感兴趣,则正确的请求是:

If anyone is interested the correct request was :

    payload = "grant_type=password&client_secret=xxx&client_id=xxx&username=username&password=password"
    headers = {
        'content-type': "application/x-www-form-urlencoded",
        'cache-control': "no-cache",
    }

    response = requests.request("POST", url, data=payload, headers=headers)

这篇关于Django OAuth2 unsupported_grant_type的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆