Blogger Information
Blog 4
fans 0
comment 0
visits 6826
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
新浪短网址API - t.cn 短链接生成接口
zzr4i4
Original
1834 people have browsed it

新浪短网址API是新浪对外公开的t.cn短链接生成接口,可以将长网址缩短生成 http:/***xxxx 格式的短网址,目前网上有很多相关的接口,大多数都不能用,而且找起来也麻烦,分享一个自己收藏了很久的接口地址,用了快一年了,一直没掉过链子,大家可以试试。

 

新浪短网址API:

http://lnurl.cn/sina/short-api?url_long=http://www.baidu.com

 

接口使用说明:

1、在线使用

将API地址中 "http://www.baidu.com" 的部分换成自己的长网址,然后复制,在浏览器中粘贴打开就能生成了。

2、对接程序使用

如果嫌在线生成麻烦,可以将API接口对接到程序中自动生成,下面是不同语言的调用演示代码,大家接入的时候可以参考下。

 

PHP调用参考:

  1. $url = 'http://www.baidu.com';
  2. $api_url = 'http://lnurl.cn/sina/short-api?url_long=http://www.baidu.com;
  3. $short_url = file_get_contents($api_url);
  4. echo $short_url;

 

JAVA调用参考:

  1. public static void main(String path[]) throws Exception {
  2. URL u = new URL("http://lnurl.cn/sina/short-api?url_long=http://www.baidu.com");
  3. InputStream in = u.openStream();
  4. ByteArrayOutputStream out = new ByteArrayOutputStream();
  5. try {
  6. byte buf[] = new byte[1024];
  7. int read = 0;
  8. while ((read = in .read(buf)) > 0) {
  9. out.write(buf, 0, read);
  10. }
  11. finally {
  12. if ( in != null) {
  13. in .close();
  14. }
  15. }
  16. byte b[] = out.toByteArray();
  17. System.out.println(new String(b, "utf-8"));
  18. }

 

Python调用参考:

  1. import urllib, urllib2, sys
  2. host = 'http://lnurl.cn'
  3. path = '/sina/short-api'
  4. method = 'GET'
  5. querys = 'url_long=http%3A%2F%2Fwww.baidu.com'
  6. bodys = {}
  7. url = host + path + '?' + querys
  8. request = urllib2.Request(url)
  9. response = urllib2.urlopen(request)
  10. content = response.read()
  11. if (content):
  12. print(content)

 

注意事项:

1、调用API接口时,只需将 “http://www.baidu.com”换成需要缩短的长链接即可。

2、接口支持链接中带参数,但要注意的是当链接中出现 & 符号时,请用 %26 代替(或者使用url编码),否则参数可能会丢失。

3、更换链接时,必须要以http(s)://开头,否则可能会导致短网址生成失败或者生成的短网址无法跳转访问原网站。

4、上文提到的新浪短网址API接口,经测试都是比较稳定的,觉得好用记得收藏一下,以免丢失。

 

常见问题:

1、长链接转换后,为什么结尾的参数丢失了?

答:因为长链接中含有特殊字符,需要将url编码后再使用接口生成。

2、接口没有返回结果,是什么情况?

答:有些时候接口返回数据会有延迟,超时未返回即生成失败,也就不会返回结果;或者是因为原链接被封了。

3、生成的短链接有效期是多久?有没有访问次数限制?

答:生成的t.cn短链接是永久有效的,没有点击次数限制,可以放心使用。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post