(url.cn)生成api接口是腾讯官方对外公开的腾讯yb体育官方-亚博网站首页的接口,下面是腾讯短网址生成接口的全部教程。可以查看到php、java、python三种获取方式。
腾讯短网址接口
格式一:http://lnurl.cn/url-api.json?url=https://suowo.cn
格式二:http://www.ldurl.cn/short-urlcn?link=https://suowo.cn
格式三:http://www.urlhx.cn/weixin-url/api?url_long=https://suowo.cn
格式四:http://www.66kuaitu.cn/urlcn.php?url=https://suowo.cn
格式五:http://kndwz.com/url-api.php?link=https://suowo.cn
接口文档
1、请求方式
post
2、返回格式
直接返回 “https://url.cn/xxxx”
3、使用方法
① 在线使用
只需将 “https://suowo.cn” 换成需要缩短的长网址(要带http(s)://),然后复制整串链接前往浏览器打开即可生成。
② 请求接口
设置服务器请求接口生成,每请求一次返回一个结果,代码请求示例如下。
4、请求示例
① php
$url = 'https://suowo.cn';
$api_url = 'http://lnurl.cn/url-api.json?url=https://suowo.cn;
$short_url = file_get_contents($api_url);
echo $short_url;
② java
public static void main(string path[]) throws exception {
url u = new ;
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 = '/url-api.json'
method = 'get'
querys = 'url_long=http://suowo.cn'
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、生成的url短网址有效期是多久?有没有访问次数限制?
答:共享接口生成的短网址是有有效期的,正式版的接口生成的短网址都是永久有效的。
4、短网址有没有访问限制?
答:此接口是基于腾讯官方接口研发,无访问次数限制,可以放心使用。