推荐几个长链接转换短链接工具 最新短链接工具平台推荐
什么是短链接 ?
就是把普通网址,转换成比较短的网址。比如:这种http://t.cn/ E70Piib,在微博这些限制字数的应用里。好处不言而喻:短、字符少、美观、便于发布、传播。
我们很多时候都会遇到将长长的网站链接转换成短链接的需求,短小精悍的链接更容易传播和识别。今天我就给大家推荐几个我正在使用的短网址平台,方便大家的使用!
短网址平台推荐
备注:下面说的平台仅支持新浪短网址以及腾讯短网址
API接口:
接口1:http://www.sina-url.cn/xinlang?url_long=http://www.baidu.com
接口2:http://www.qqdwz.cn/urlcn/api?url_long=http://www.baidu.com
接口3:http://maiyurl.cn/weibourl?url_long=http://www.baidu.com
备注:
① 调用api接口时,只需将 “http://www.baidu.com”换成需要缩短的长网址即可。
② 接口支持url参数,当url中出现 & 符号时,请用 %26 代替(或者使用url编码格式),否则参数可能会丢失。
③ 填写url时,必须要以http(s)://开头,否则可能会导致生出的短网址无法访问原网站。
在线生成:
平台1:http://www.sina-url.cn
平台2:http://www.qqdwz.cn
接口3:http://maiyurl.cn
备注:
① 长链接转换,为什么结尾的参数丢失了?
答:因为url中含有特殊字符,需要使用UTF8编码格式,将url编码
② 接口没有返回结果,是什么情况?
答:有些时候接口返回数据会有延迟,延时未返回则会提示生成失败;或者是因为原链接被封了。
API接口文档说明
PHP调用演示:
$url = 'http://www.baidu.com'; $api_url = 'http://www.qqdwz.cn/tcn/api?url_long=http://www.baidu.com; $short_url = file_get_contents($api_url); echo $short_url;
JAVA调用演示:
public static void main(String path[]) throws Exception { URL u = new URL("http://www.qqdwz.cn/tcn/api?url_long=http://www.baidu.com"); InputStream in = u.openStream(); ByteArrayOutputStream out = new ByteArrayOutputStream(); try { byte buf[] = new byte[1024]; int read = 0; while ((read = in .read(buf)) > 0) { out.write(buf, 0, read); } } finally { if ( in != null) { in .close(); } } byte b[] = out.toByteArray(); System.out.println(new String(b, "utf-8")); }
Python调用演示:
import urllib, urllib2, sys host = 'http://www.qqdwz.cn ' path = 'sina.php?url_long=' method = 'GET' querys = 'url=http%3A%2F%2Fwww.baidu.com' bodys = {} url = host + path + '?' + querys request = urllib2.Request(url) response = urllib2.urlopen(request) content = response.read() if (content): print(content)
- 点赞
- 收藏
- 关注作者
评论(0)