我正在尝试在我的网络应用程序中实现 youtube 认证用户的视频。使用 oauth 我想连接到 youtube api。这是我从 github 获取的代码,我现在正在使用https://gist.github.com/2970845
我已经用该代码实现了vimeo api 。但我不知道 Youtube api。当我请求时显示此错误request_token
<Response [400]>
>>>r.text
u'parameter_absent\noauth_parameters_absent:oauth_consumer_key&oauth_signature_method&oauth_signature&oauth_timestamp&oauth_nonce&scope\n\n'
这是来自 Youtube 参考页面https://developers.google.com/accounts/docs/OAuth_ref的示例请求。
POST /accounts/OAuthGetRequestToken HTTP/1.1
Host: www.google.com
Content-Type: application/x-www-form-urlencoded
Authorization: OAuth
oauth_consumer_key="example.com",
oauth_signature_method="RSA-SHA1",
oauth_signature="wOJIO9A2W5mFwDgiDvZbTSMK%2FPY%3D",
oauth_timestamp="137131200",
oauth_nonce="4572616e48616d6d65724c61686176",
oauth_version="1.0"
oauth_callback="http://www.example.com/showcalendar.html"
scope="http://www.google.com/calendar/feeds http://picasaweb.google.com/data"
我不确定的是我在 gist 页面中显示的标题。我有这样的
>>> headers
{'Authorization': u'oauth_body_hash=xxxxxxxxxxxxxxxxxxxxxxx,oauth_nonce=62215234,oauth_timestamp=1340347725,oauth_consumer_key=xxxxxxxxxxxx.apps.googleusercontent.com,oauth_signature_method=HMAC-SHA1,oauth_version=1.0,oauth_signature=xxxxxxxxxxxxxxxxxxxxxxxx,scope=https://gdata.youtube.com,oauth_callback=http://127.0.0.1:8000/information/youtube/'}
但是 youtube 参考页面显示我们必须使用 "Authorization: OAuth"。我怎样才能在标题中给出它?
谢谢!