三个主要短网址API对比:

goo.gl 国内速度慢,需要HTTPS,不推荐

t.cn 速度略慢,但认知度高,可以申请更高的配额 。推荐。

dwz.cn 速度很快,认知度低,配额不明确。勉强推荐。下面就是这个的使用代码

import urllib,httplib conn=httplib.HTTPConnection('dwz.cn') params = urllib.urlencode({'url':'http://www.baidu.com/'}) conn.request('POST', '/create.php', headers={"Content-Type":"application/x-www-form-urlencoded"}, body=params) result = conn.getresponse() resultContent = result.read() print resultContent