gpt4 book ai didi

youtube - 所有者如何验证YouTube视频/ channel 的开发者?

转载 作者:行者123 更新时间:2023-12-03 05:43:58 25 4
gpt4 key购买 nike

我正在为自己不拥有的某些YouTube channel 开发软件。

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

最佳答案

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

首先,注册API以获取client_id。

然后,要求合作伙伴登录其Google帐户,键入以下URL,然后将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。

关于youtube - 所有者如何验证YouTube视频/ channel 的开发者?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8717825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com