url.cn短网址生成api接口(附t.cn短网址api接口)

简要概述

分享几个最新url.cn短网址api接口&t.cn短网址api接口,都可以正常调用,觉得不错可以收藏一下。

请求地址

1. 腾讯(url.cn)短网址api接口

 http://lnurl.cn/weixin/short?url_long=http://www.baidu.com

 http://kndwz.com/api-urlcn.php?link=http://www.baidu.com

 http://qturl.cn/urldwz/api.html?data=http://www.baidu.com


2. 新浪(t.cn)短网址api接口

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

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

 http://qturl.cn/urldwz/api.html?data=http://www.baidu.com

使用说明:

复制接口url,将 "http://www.baidu.com"换成需要缩短的网址,直接在浏览器中打开即可。

请求方式:

● GET

请求示例:

1. 腾讯短网址

http://lnurl.cn/weixin/short?url_long=http://www.baidu.com

2. 新浪短网址

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


返回示例:

 {
    "short_url": "https://url.cn/Az9f9qZ",
    "long_url": "https://www.baidu.com"
 }
  {
        "short_url": "https://t.cn/Az9f9qZ",
        "long_url": "https://www.baidu.com"
  }

返回参数说明

参数名类型说明short_urlstring生成的短网址long_urlstring长网址

PHP调用演示

$api_url = ' http://qturl.cn/urldwz/api.html?data='.urlencode($url);
$short_url = file_get_contents($api_url);
return $short_url;

JAVA调用演示

public static void main(String path[]) throws Exception {
URL u = new URL("http://qturl.cn/urldwz/api.html?data=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://qtur.cn'
path = 'urldwz/api.html'
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)

你可能感兴趣的:(url.cn短网址生成api接口(附t.cn短网址api接口))