donglian4879 2013-09-03 11:29
浏览 160
已采纳

从Youtube视频评论页面获取所有用户ID /作者

As the title says I want to get all the users ids who posted a comment on specific Youtube videos. I have looked all over for something like this, the Youtube data API comes close but I can only get it to pick up the comments and not the user it came from. The other method I've looked at doing is using greasemonkey + jquery to get them but jquery doesn't run on Youtube properly and alot of javascript functions don't either. Can anyone suggest a way this can be done?

Here is part of a script I was testing in greasemonkey:

var elem = document.getElementsByClassName('author')[1];
var mystring = elem.nextSibling;
var mynewString = mystring.innerHtml;

document.getElementById('google-cookie-alert').innerHTML = mynewString;

But it comes back undefined.

  • 写回答

1条回答 默认 最新

  • dongyang4615 2013-09-03 11:42
    关注

    Here you go. This will log out all the usernames for each of the commenters displayed.

    var elements = document.getElementsByClassName("author");
    for (var i = 0; i < elements.length; i++){
        if(elements[i].children.length > 0)
             console.log(elements[i].children[0].text)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型