<div class="reply_text">
<div id="wpt-183342672_1470">
<div class="post_media clear_fix">
<a onmouseenter="return Emoji.stickerOver(51078, this);" onclick="return Wall.stickerClick(1028, false, event, []);">
<div onmouseenter="StickersAnimation.loadAndPlaySticker(this);"
...
data-animation-path="https://vk.com/sticker/3-51078.json">
<img class="sticker_img "
src="https://vk.com/sticker/1-51078-256" .../>
const urlChannel = 'https://www.googleapis.com/youtube/v3/channels?part=snippet&id=' + channelID + '&fields=items%2Fsnippet%2Fthumbnails&key=' + apiKey;
async function getChannel(){
const urlChannelResult = await fetch(urlChannel)
const jsonChannel = await urlChannelResult.json()
const authorPhoto = jsonChannel.items[0].snippet.thumbnails.high.url;
console.log(authorPhoto)
return authorPhoto;
}
const usePhoto = await getChannel();