Django OAuth2 unsupported

编程入门 行业动态 更新时间:2024-10-24 22:30:57
本文介绍了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

本文发布于:2023-10-12 16:42:40,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1485290.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Django   unsupported

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!