如何由所有者对YouTube视频/频道的开发者进行身份验证?

时间:2012-01-03 19:52:05

标签: youtube google-api youtube-api gdata

我正在开发一些不属于我自己的YouTube频道的软件。

要检索洞察数据,我需要进行身份验证。如何实现?

1 个答案:

答案 0 :(得分:0)

针对已安装的应用程序尝试OAuth 2.0:http://code.google.com/apis/youtube/2.0/developers_guide_protocol.html#OAuth2_Installed_Applications_Flow

首先,注册API以获取client_id。

然后,要求合作伙伴登录他们的Google帐户,输入以下网址,与您的帐户更改client_id。 redirect_uri应设置为“urn:ietf:wg:oauth:2.0:oob”。

https://accounts.google.com/o/oauth2/auth?client_id=1084945748469-eg34imk572gdhu83gj5p0an9fut6urp5.apps.googleusercontent.com&redirect_uri=urn:ietf:wg:oauth:2.0:oob&scope=https://gdata.youtube.com&response_type=code&access_type=offline

然后他们授权您申请并获得授权码。

然后打开一个终端并输入(更改你的代码,client_id和client_secret):

curl https://accounts.google.com/o/oauth2/token -d "code=4/ux5gNj-_mIu4DOD_gNZdjX9EtOFf&client_id=1084945748469-eg34imk572gdhu83gj5p0an9fut6urp5.apps.googleusercontent.com&client_secret=hDBmMRhz7eJRsM9Z2q1oFBSe&redirect_uri=urn:ietf:wg:oauth:2.0:oob&grant_type=authorization_code"

你会得到如下回复:

{ "access_token" : "ya29.AHES6ZTtm7SuokEB-RGtbBty9IIlNiP9-eNMMQKtXdMP3sfjL1Fc", "token_type" : "Bearer", "expires_in" : 3600, "refresh_token" : "1/HKSmLFXzqP0leUihZp2xUt3-5wkU7Gmu2Os_eBnzw74" }

记住refresh_token,每次运行应用程序时,都需要使用refresh_token获取新的access_token。