You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
723 B
29 lines
723 B
|
|
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 getChannelId('https://www.youtube.com/@craftedworkshop');
|
|
console.log(coiso)
|
|
|
|
})()
|
|
|