I am working in Android and using Jsoup for cwaling some data from internet. I am unable to find the exact class name where the comment lies in the below defined code. I tried with disqus_thread , dsq-content,ul-dsq-comments and dsq-comment-body by going to the source page of url but not any one returned the comments.
public static void main(String[] args) {
            Document d;
            Elements lin = null;
            String url = "http://blogs.tribune.com.pk/story/39090/i-hate-materialistic-people-beta-but-i-love-my-designer-clothes/";
            try {
                d = Jsoup.connect(url).timeout(20*1000).userAgent("Chrome").get();
                lin = d.getElementsByClass("dsq-comment-body");
                System.out.println(lin);
            } catch (IOException e) {
                    e.printStackTrace();
                }
            int i=0;
            for(Element l :lin){
                System.out.println(""+i+ " : " +l.text());
                i++;
            }
}