CSDN免积分下载工具一枚,刚刚出炉。。。
yofx | 2013-04-20 15:22
失误。。。选了个0积分的。。。不过要积分的还是测试过了。。木有问题的
下载地址:csdn什么都免下载器.zip
WIN7无压力。。。
无节操讨论:
1#
苦战 | 2013-04-20 15:34
WIN8 测试无压力
2#
yofx | 2013-04-20 16:05
@苦战 感谢测试:)
3#
苦战 | 2013-04-20 16:06
@yofx 不谢 点右边即可~
4#
回复此人感谢
0x7c | 2013-04-20 16:10
还能用?
5#
乌云 (㊣) | 2013-04-20 16:24
可以用的。
ID 5275116对应的下载链接
http://dl5.csdn.net/fd.phppost/329552751165020/&s=a856b1afc6e382c791547628f5461531
怎么破。
6#
isxenos (此处内容只有点击右侧感谢按钮才可见) | 2013-04-20 16:33
在线版:
http://124.146.62.26:18250/
觉得不错请点右侧感谢.基友一生平安
7#感谢(1)
isxenos (此处内容只有点击右侧感谢按钮才可见) | 2013-04-20 16:39
原理+手动解析:
http://download.csdn.net/index.php/rest/source/getsourceinfo/对应ID
如:
http://download.csdn.net/index.php/rest/source/getsourceinfo/2354868
你可以自己写个工具了.
觉得不错请点右侧感谢.基友一生平安
8#
灵惜 (哇咔咔,搞定它) | 2013-04-20 17:20
@isxenos 不错
9#
冉冉升起 (....ing) | 2013-04-20 17:22
可以下载
10#
小黑要低调 | 2013-04-20 20:36
id有点熟悉
11#
鬼哥 | 2013-04-20 21:27
@ yofx api地址怎么找到的。。。 想不通csdn既然存在这样的api
12#
鬼哥 | 2013-04-20 21:28
@yofx 出了就完不久了。
13#
猥琐 (学习什么的最重要!) | 2013-04-20 21:29
@小黑要低调 +1
14#
saber (终极屌丝之路~) | 2013-04-20 23:20
感谢。。。
15#
yofx | 2013-04-20 23:59
@isxenos 你把我赤裸裸的曝光了。。
16#
yofx | 2013-04-21 00:00
@鬼哥 很早就有啦。。。用你的在线版,不能下。。就自己动手了。。。哈哈。。
17#
核攻击 (统治全球,奴役全人类!毁灭任何胆敢阻拦的有机生物!) | 2013-04-21 16:25
楼主,我认识你。
18#
txcbg | 2013-04-21 23:33
顶楼主
19#
Lmy (话说名字太长容易被人关注) | 2013-04-21 23:49
import http.client
import json
import sys
def getInfo(id):
conn = http.client.HTTPConnection('download.csdn.net')
conn.request('GET', '/index.php/rest/source/getsourceinfo/' + str(id))
content = str(conn.getresponse().readall(), encoding = "UTF-8")
conn.close()
return json.loads(content)
if __name__ == '__main__':
if len(sys.argv) == 2:
id = sys.argv[1]
print("""
用 户 名:{username}
发布地址:http://download.csdn.net{link}
标 题:{title}
说 明:{description}
原文件名:{originfile}
下载次数:{download_num}
下载地址:{url}
MD5:{md5}
""".format_map(getInfo(id)))
else:
print("""
Please enter the ID
Command:
python {0} ID
Command Sample:
python {0} 5275116
""".format(sys.argv[0]))
python (和谐) 5275116 用 户 名:yxqhxy 发布地址:http://download.csdn.net/detail/yxqhxy/5275116 标 题:谷歌地图下载工具 说 明:选定坐标,自动下载高清大幅谷歌地图。已使用,绝对可靠! 原文件名:Daogle Google Map Downloader V1.1 Chinese Steup.rar 下载次数:1 下载地址:http://dldx.csdn.net/fd.phppost/836952751162174/&s=94aef28c5582af821e1ed24523b7f0a8 MD5:d4a1b7928961ac867f2187ab35f6e97b Process finished with exit code 0
20#
Lmy (话说名字太长容易被人关注) | 2013-04-21 23:58
@isxenos @鬼哥 @核攻击 @yofx
21#
Csser | 2013-04-22 00:28
带走,感谢一个
22#
isxenos (此处内容只有点击右侧感谢按钮才可见) | 2013-04-22 19:06
@Lmy 一直懒的写 谢了基友
23#
%27 | 2013-04-22 19:12
不错..
24#
Lmy (话说名字太长容易被人关注) | 2013-04-22 19:16
@isxenos 在来一个GreaseMonkey版 Firefox20单方面测试通过
// ==UserScript==
// @name CSDN免积分下载
// @description 免积分 懂的
// @include http://download.csdn.net/detail/*
// @include http://download.csdn.net/download/*
// @version 0.0.1
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant GM_xmlhttpRequest
// @author 那个用就是那个的
// @license MIT License
// ==/UserScript==
(function() {
var id = location.pathname.match(/\d+/)[0];
var isGetAddress = false;
var $download = $('.res_down_area .left').after('<a href="javascript:void(0)">免积分下载</a>').next();
$download.click(function() {
if (isGetAddress) {
return;
}
GM_xmlhttpRequest({
method: 'GET',
url: 'http://download.csdn.net/index.php/rest/source/getsourceinfo/' + id,
onload: function (response) {
$download.attr('href', localStorage[id] = JSON.parse(response.responseText).url);
isGetAddress = true;
$download.html('开始下载');
}
});
});
})();
25#
四先生 | 2013-04-22 21:30
神器
26#
yofx | 2013-04-23 00:10
@核攻击 帅哥你是我偶像:)
27#
yofx | 2013-04-23 00:10
@txcbg 大叔:)
28#
yofx | 2013-04-23 00:10
@Lmy 给力:)灰常感谢。。。收藏
29#
Lmy (话说名字太长容易被人关注) | 2013-04-23 00:49
@yofx Firefox20单方面测试通过 没事吧
留言评论(旧系统):
