youtube webhook not fin

This commit is contained in:
Jay
2018-07-03 10:27:24 +08:00
parent d7c64b3c65
commit 88e412e33a
3 changed files with 48 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
const axios = require('axios')
const config = require('../../config')
const subYoutube = async (id = '') => {
let url = 'https://pubsubhubbub.appspot.com/subscribe'
if (typeof id !== 'string' || id.trim().length === 0) return null
id = id.trim()
let data = {
'hub.mode': 'subscribe',
'hub.topic': `https://www.youtube.com/xml/feeds/videos.xml?channel_id=${id}`,
'hub.callback': `${config.url.replace(/\/$/, '')}/google/youtube/webhook?id=${id}`,
'hub.lease_seconds': 86400
}
try {
await axios({
data,
url,
method: 'post'
})
} catch (err) {}
return null
}
module.exports = {
subYoutube
}