getIGStats({
type: 'post',
post_url: 'https://www.tiktok.com/@takeoffwithallie/video/7271684034235813163?_t=8fEcekeSWJm&_r=1'
}).then( res => {
console.log(res);
console.log(res.likes);
console.log(res.pic_url);
console.log(res.comments);
document.getElementById("comments").innerHTML = res.comments;
document.getElementById("likes").innerHTML = res.likes;
document.getElementById("img").innerHTML = '
';
});