我正在尝试在我的网络应用程序中使用Youtube apis,遵循本指南https://developers.google.com/youtube/2.0/developers_guide_protocol_oauth2#OAuth2_Server_Side_Web_Applications_Flow我已成功完成第3步并获得**授权码**。
现在我坚持向此网址https://accounts.google.com/o/oauth2/token
我想提出这样的请求:(取自我上面给出的链接)
POST /o/oauth2/token HTTP/1.1
Host: accounts.google.com
Content-Type: application/x-www-form-urlencoded
code=4/ux5gNj-_mIu4DOD_gNZdjX9EtOFf&
client_id=1084945748469-eg34imk572gdhu83gj5p0an9fut6urp5.apps.googleusercontent.com&
client_secret=hDBmMRhz7eJRsM9Z2q1oFBSe&
redirect_uri=http://localhost/oauth2callback&
grant_type=authorization_code
我试过这样的事情:
headers = {'Content-Type': 'application/x-www-form-urlencoded code=4/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&client_id=xxxxxxxxxxx.apps.googleusercontent.com&client_secret=xxxxxxxxxxxxxxxxx&redirect_uri=http://127.0.0.1:8000/information/youtube/&grant_type=authorization_code'}
r = requests.post(url, headers)
我收到了这个错误:
<Response [411]>
u'<!DOCTYPE html>\n<html lang=en>\n <meta charset=utf-8>\n <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">\n <title>Error 411 (Length Required)!!1</title>\n <style>\n *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}\n </style>\n <a href=//www.google.com/><img src=//www.google.com/images/errors/logo_sm.gif alt=Google></a>\n <p><b>411.</b> <ins>That\u2019s an error.</ins>\n <p>POST requests require a <code>Content-length</code> header. <ins>That\u2019s all we know.</ins>\n'
我知道我的帖子请求错了,我需要你的指导如何让它发挥作用。
谢谢!
答案 0 :(得分:6)
请勿将数据放入标题中。请改用.post()
的{{3}}。由于urlencoded的POST主体是默认的,因此也无需通过headers
参数指定它。
data = {
'code': '4/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'client_id': 'xxxxxxxxxxx.apps.googleusercontent.com',
'client_secret': 'xxxxxxxxxxxxxxxxx',
'redirect_uri': 'http://127.0.0.1:8000/information/youtube/'.
'grant_type': 'authorization_code'
}
r = requests.post(url, data=data)
您可以通过{em>请求通过data
kwarg扩展名来处理OAuth身份验证,从而使此代码更加出色:requests-oauth
然后,您无需手动处理OAuth参数即可执行请求。
答案 1 :(得分:3)
您需要使用data
requests.post
参数
文档应该有所帮助:http://docs.python-requests.org/en/latest/user/quickstart/#more-complicated-post-requests