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

简要描述

新浪短网址api接口是新浪官方对外公开的t.cn短链接生成接口,可以将一个冗长的链接缩短生成t.cn 格式的短链接。

应用场景

短网址的应用场景很广,譬如短信营销、邮件推广、微信营销、QQ营销、自媒体推广、渠道推广等,都会用到短网址。究其原因是在于短网址可以降低推广成本、用户记忆成本,提高用户点击率;在特定的场景下推广还能规避关键词,防止域名被拦截,隐藏真实地址等。

新浪短网址api

格式一:http://lnurl.cn/tcn-api.json?url=http://www.baidu.com

格式二:http://kndwz.com/tcn-api.php?link=http://www.baidu.com

格式三:http://qturl.cn/tcn-dwz/api.html?url=http://www.baidu.com

接口文档

1、请求方式

POST

2、返回格式

直接返回tcn短域名

3、使用方法

① 在线使用

只需将 “http://www.baidu.com” 换成需要缩短的长网址(要带http(s)://),然后复制整串链接前往浏览器打开即可生成。

② 请求接口

设置程序自动请求接口生成,PHP、Java和Python请求示例如下。


4、请求示例

PHP:

$url = 'http://www.baidu.com';
$api_url = 'http://lnurl.cn/tcn-api.json?url=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://lnurl.cn/tcn-api.json?url=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://lnurl.cn'
path = '/tcn-api.json'
method = 'GET'
querys = 'url_long=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)

 

补充说明:

1、请求接口时,需做urlencode处理,否则可能会导致参数丢失,短网址失败等。

2、请求接口的长网址必须要以http(s)://开头。

3、接口请求频率不能太快,正常1次/s。

常见问题:

1、长网址转换后,为什么参数丢失了?

答:因为没有做urlencode处理,导致某些特殊字符没有识别到。需要将url编码后再请求接口。

2、请求接口为什么没有返回结果?

答:有些时候接口返回数据有延迟,就会导致超时未返回。或者是因为原链接被封了。

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

答:共享接口生成的短网址是有有效期的,正式版的接口生成的短网址都是永久有效的。

4、短网址有没有访问限制?

答:此接口为新浪官方接口,是不限制访问次数的,可以放心使用。

原文转载自:http://lnurl.cn/blog01.html

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