- //&cls&cscript -nologo -e:jscript "%~f0"&pause&exit
-
- var host='http://www.toutiao.com';
- var id='6607289740';
- url=host+'/c/user/article/?page_type=1&user_id='+id+'&max_behot_time=0&count=1000';
- var http = new ActiveXObject('Msxml2.XMLHTTP');
- http.open('GET', url, false);
- http.send();
- json=http.ResponseText;
- if(json){
- var js = eval('('+json+')');
- //max_behot_time=js['next']['max_behot_time'];
- var data=js['data'];
- if(data){
- for(var i=0;i<data.length;i++){
- var item=data[i];
- WSH.echo(
- (i+1)+'.'+item['title']+'\r\n'+item['abstract']+'\r\n'+host+item['source_url']+'\r\n'+item['display_url']+'\r\n'
- );
- }
- }
- }
复制代码
|