How to get all the comments from Disqus?

前端 未结 3 722
暖寄归人
暖寄归人 2021-02-03 14:51

I want to fetch all the comments on CNN whose comment system is Disqus. As an example, http://edition.cnn.com/2013/02/25/tech/innovation/google-glass-privacy-andrew-keen/index.h

3条回答
  •  粉色の甜心
    2021-02-03 15:07

    without api:

    #disqus_thread {
      position: relative;
      height: 300px;
      background-color: #fff;
      overflow: hidden;
    }
    #disqus_thread:after {
      content: "";
      display: block;
      height: 10px;
      width: 100%;
      position: absolute;
      bottom: 0;
      background: white;
    }
    #disqus_thread.loaded {
      height: auto;
    }
    #disqus_thread.loaded:after{
        height:55px;
    }
    #disqus-load {
      text-align: center;
      color: #fff;
      padding: 11px 14px;
      font-size: 13px;
      font-weight: 500;
      display: block;
      text-align: center;
      border: none;
      background: rgba(29,47,58,.6);
      line-height: 1.1;
      border-radius: 3px;
      font-weight: 500;
      transition: background .2s;
      text-shadow: none;
      cursor:pointer;
    }
    
    
    Load comments

提交回复
热议问题