parent
d26096eea2
commit
c53dd9b26f
@ -1,53 +1,28 @@
|
||||
var channelId = 'UCRsrOaKEdy0ymNqR7Urqa2Q'
|
||||
const xmlparser = require('xml-js');
|
||||
(async function ()
|
||||
|
||||
async function getChannelId(url)
|
||||
{
|
||||
return await fetch(url)
|
||||
.then(handleResponse)
|
||||
.then(handleData)
|
||||
.catch(handleError);
|
||||
function handleResponse(response)
|
||||
{
|
||||
return response.text();
|
||||
}
|
||||
function handleError(error)
|
||||
{
|
||||
console.log(error)
|
||||
return error;
|
||||
}
|
||||
function handleData(data)
|
||||
{
|
||||
return data.split('https://www.youtube.com/feeds/videos.xml?channel_id=')[1].split('"')[0];
|
||||
}
|
||||
}
|
||||
(async ()=>
|
||||
{
|
||||
var coiso = await fetch(`https://www.youtube.com/feeds/videos.xml?channel_id=${channelId}`)
|
||||
.then(handleResponse)
|
||||
.then(handleData)
|
||||
.catch(handleError);
|
||||
function handleResponse(response)
|
||||
{
|
||||
return response.text()
|
||||
}
|
||||
function handleError(error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
function handleData(data)
|
||||
{
|
||||
data = xmlparser.xml2json(data,
|
||||
{
|
||||
compact: true,
|
||||
space: 4
|
||||
});
|
||||
data = JSON.parse(data)
|
||||
// console.log({
|
||||
// channelName:data.feed.author.name._text,
|
||||
// lasVid:
|
||||
// {
|
||||
// link:data.feed.entry[0].link._attributes.href,
|
||||
// published:data.feed.entry[0].published._text
|
||||
// }
|
||||
// })
|
||||
console.log(data.feed.entry[0])
|
||||
|
||||
return {
|
||||
channelName:data.feed.author.name._text,
|
||||
lasVid:
|
||||
{
|
||||
link:data.feed.entry[0].link._attributes.href,
|
||||
published:data.feed.entry[0].published._text,
|
||||
link:data.feed.entry[0].link._attributes.href,
|
||||
image:data.feed.entry[0].link._attributes.href.split('=')[1],
|
||||
title:data.feed.entry[0].title._text,
|
||||
author:{
|
||||
name:data.feed.entry[0].author.name._text,
|
||||
url:data.feed.entry[0].author.url._text
|
||||
}
|
||||
var coiso = await getChannelId('https://www.youtube.com/@craftedworkshop');
|
||||
console.log(coiso)
|
||||
|
||||
})()
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
//console.log(coiso, coiso.channelName)
|
||||
})()
|
Loading…
Reference in new issue