我的任务目标是创建一个控制台脚本,它将我自己网站上最近上传的视频插入我自己的 Youtube 频道。我想使用服务器到服务器的身份验证,但 YoutubeApi 现在不支持这种身份验证方式。
所以我的问题是:如何在没有用户帮助的情况下使用 oauth2 身份验证和控制台脚本将视频上传到 youtube 频道?有没有办法在不使用已弃用的 ClientLogin 身份验证协议的情况下做到这一点?
我的任务目标是创建一个控制台脚本,它将我自己网站上最近上传的视频插入我自己的 Youtube 频道。我想使用服务器到服务器的身份验证,但 YoutubeApi 现在不支持这种身份验证方式。
所以我的问题是:如何在没有用户帮助的情况下使用 oauth2 身份验证和控制台脚本将视频上传到 youtube 频道?有没有办法在不使用已弃用的 ClientLogin 身份验证协议的情况下做到这一点?
是的,这部分解释了如何:https ://developers.google.com/youtube/v3/guides/moving_to_oauth#standalone
基本上,您通过一次并从那里保存令牌。
如果您甚至想跳过那一次,您可以在OAuth2 Playground中获得一个具有受尊重范围的刷新令牌,并将其直接插入您的代码中,并带有客户端密码和 id。这样你的脚本就不需要网络浏览器了。
这是一个通过 curl 上传视频的脚本
# WARNING, this works only with GNU grep, if you run this on a mac replace grep with ggrep after 'brew install grep'
# Store our credentials in our home directory with a file called .<script name>
my_creds=.`basename $0`
client_id='YOURCLIENTID'
client_secret='YOURCLIENTSECRET' # really a secret
if [ -s $my_creds ]; then
# if we already have a token stored, use it
. $my_creds
time_now=`date +%s`
else
scope='https://www.googleapis.com/auth/youtube'
# Form the request URL
auth_url="https://accounts.google.com/o/oauth2/auth?client_id=$client_id&scope=$scope&response_type=code&redirect_uri=urn:ietf:wg:oauth:2.0:oob"
echo "Please go to:"
echo
echo "$auth_url"
echo
echo "after accepting, enter the code you are given:"
read auth_code
# swap authorization code for access and refresh tokens
auth_result=$(curl -s https://accounts.google.com/o/oauth2/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d code=$auth_code \
-d client_id=$client_id \
-d client_secret=$client_secret \
-d redirect_uri=urn:ietf:wg:oauth:2.0:oob \
-d grant_type=authorization_code)
echo COMPLETE ANSWER WAS:
echo $auth_result
access_token=$(echo "$auth_result" | \
ggrep -Po '"access_token" *: *.*?[^\\]",' | \
awk -F'"' '{ print $4 }')
refresh_token=$(echo "$auth_result" | \
ggrep -Po '"refresh_token" *: *.*?[^\\]",*' | \
awk -F'"' '{ print $4 }')
expires_in=$(echo "$auth_result" | \
ggrep -Po '"expires_in" *: *.*' | \
awk -F' ' '{ print $3 }' | awk -F',' '{ print $1}')
time_now=`date +%s`
expires_at=$((time_now + expires_in - 60))
echo "access_token=$access_token\nrefresh_token=$refresh_token\nexpires_at=$expires_at" > $my_creds
fi
# if our access token is expired, use the refresh token to get a new one
if [ $time_now -gt $expires_at ]; then
refresh_result=$(curl -s https://accounts.google.com/o/oauth2/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d refresh_token=$refresh_token \
-d client_id=$client_id \
-d client_secret=$client_secret \
-d grant_type=refresh_token)
access_token=$(echo "$refresh_result" | \
ggrep -Po '"access_token" *: *.*?[^\\]",' | \
awk -F'"' '{ print $4 }')
expires_in=$(echo "$refresh_result" | \
ggrep -Po '"expires_in" *: *.*' | \
awk -F' ' '{ print $3 }' | awk -F',' '{ print $1 }')
time_now=`date +%s`
expires_at=$(($time_now + $expires_in - 60))
echo "access_token=$access_token\nrefresh_token=$refresh_token\nexpires_at=$expires_at" > $my_creds
fi
# finally this is the call to upload the video (but I haven't managed to set title and description, you might want to make another call for that)
curl https://www.googleapis.com/upload/youtube/v3/videos?part=snippet \
-d part='snippet' \
-d snippet.title='test of a title' \
-d snippet.description='test of video description' \
--data-binary "@./small.mp4" \
-H "Content-Type: application/octet-stream" \
-H "Authorization: Bearer $access_token"
要完成这项工作,您需要
这个脚本是基于this other question
此外,还有这个 github 项目解决了 python 的问题......
在与 YoutubeAPI 开发人员光盘后,我们得到了这样的解决方案: 不使用已弃用的** ** ClientLogin Auth Protocol 将完全弃用(但直到 4月您可以使用它)。
因此,如果您希望您的用户将视频从您的网站上传到您的 YT 频道,您应该采用以下方案: - 您的用户将视频上传到您的网站 - 您(或拥有您的 YT 帐户凭据的其他人)将视频导入到您的 YT 频道要解决此问题,您可以轻松使用 OAuth2 协议。
我已经能够使用以下 shell 脚本将视频上传到我在 YouTube 上的频道。
#!/bin/sh
# Upload the given video file to your YouTube channel.
cid_base_url="apps.googleusercontent.com"
client_id="<YOUR_CLIENT_ID>.$cid_base_url"
client_secret="<YOUR_CLIENT_SECRET>"
refresh_token="<YOUR_REFRESH_TOKEN>"
token_url="https://accounts.google.com/o/oauth2/token"
api_base_url="https://www.googleapis.com/upload/youtube/v3"
api_url="$api_base_url/videos?uploadType=resumable&part=snippet"
access_token=$(curl -H "Content-Type: application/x-www-form-urlencoded" -d refresh_token="$refresh_token" -d client_id="$client_id" -d client_secret="$client_secret" -d grant_type="refresh_token" $token_url|awk -F '"' '/access/{print $4}')
auth_header="Authorization: Bearer $access_token"
upload_url=$(curl -I -X POST -H "$auth_header" "$api_url"|awk -F ' |\r' '/loc/{print $2}'); curl -v -X POST --data-binary "@$1" -H "$auth_header" "$upload_url"
有关如何获取自定义变量值的信息,请参阅上一个答案。
如果你想在没有登录的情况下上传,那么你必须首先将登录数据保存到 pickle 文件中,下次只需调用该 pickle 文件。它将包含您的频道身份验证数据。不要让泡菜文件公开。
youtube = googleapiclient.discovery.buil(...)
只需将此 youtube 变量保存到 pickle 文件中即可。您可以在测试时在本地进行。只需将此 pickle 文件保存到服务器并调用其反序列化对象即可。