gpt4 book ai didi

javascript - 我如何使此代码每5分钟自动运行一次,以使即使关闭计算机电源,视频标题也与 View 匹配?

转载 作者:行者123 更新时间:2023-12-03 05:34:26 27 4
gpt4 key购买 nike

因此,我遵循了一个教程来更改YouTube视频标题以匹配 View 。现在,本教程讨论的是诸如cronjobs之类的东西,但未指定如何使用它们。我是一个初学者,所以对此我不太了解。我的代码有效,但是我必须每5分钟重新运行一次代码,以便标题与 View 匹配。
因此有人可以帮助我设置cronjobs或什至在我关闭计算机后运行代码所需的任何东西。

require('dotenv').config()

var {google} = require('googleapis');
var OAuth2 = google.auth.OAuth2;
const VIDEO_ID = process.env.VIDEO_ID

main()

async function main() {
try {
const auth = authorize()
const videoViews = await getVideoViews(auth)
const videoTitle = await updateVideoTitle(auth, videoViews)
console.log(videoTitle)
} catch (e) {
console.error(e)
}
}

function authorize() {
const credentials = JSON.parse(process.env.CLIENT_SECRET)
var clientSecret = credentials.installed.client_secret;
var clientId = credentials.installed.client_id;
var redirectUrl = credentials.installed.redirect_uris[0];
var oauth2Client = new OAuth2(clientId, clientSecret, redirectUrl);

oauth2Client.credentials = JSON.parse(process.env.OAUTH_TOKEN);
return oauth2Client
}

function getVideoViews(auth) {
const service = google.youtube('v3')
return new Promise((resolve, reject) => {
service.videos.list({
auth: auth,
part: 'statistics',
id: VIDEO_ID
}, function(err, response) {
if (err) return reject(err)
resolve(response.data.items[0].statistics.viewCount)
})
})
}

function updateVideoTitle(auth, views) {
const service = google.youtube('v3')
return new Promise((resolve, reject) => {
service.videos.update({
auth: auth,
part: 'snippet',
resource: {
id: VIDEO_ID,
snippet: {
title: `This Video Has ${new Intl.NumberFormat('en-US').format(views)} Views`,
categoryId: 27
}
}
}, function(err, response) {
if (err) return reject(err)
resolve(response.data.snippet.title)
})
})
}
谢谢!

最佳答案

您可以每隔5分钟使用main递归调用setTimeout函数,如下所示:

async function main() {
try {
const auth = authorize()
const videoViews = await getVideoViews(auth)
const videoTitle = await updateVideoTitle(auth, videoViews)
console.log(videoTitle)
} catch (e) {
console.error(e)
}
setTimeout(main, 5*60*1000);
}
但请注意,如果计算机关闭,则此操作将无效,因为在这种情况下将不会进行API调用。要使其永久工作,您需要将代码部署在24 * 7的服务器上

关于javascript - 我如何使此代码每5分钟自动运行一次,以使即使关闭计算机电源,视频标题也与 View 匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62548329/

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