2020新浪短网址批量生成API接口源码

t.cn短链接生成接口文档说明

1、新浪t.cn最新接口API

http://www.tcndwz.com/tcn-api/?key=49ba59abbe56e057&url=http://www.baidu.com

https://www.showapi.com/apiGateway/view?apiCode=2340(易源-新浪t.cn短链接批量生成API接口

2.请求方式:POST/GET均可

3.参数
url(你要缩短的网址)

4.PHP调用示例

$url = 'http://www.baidu.com';

$api_url = 'http://www.tcndwz.com/tcn-api?key=49ba59abbe56e057&url='.urlencode($url);

$short_url = file_get_contents($api_url);

echo $short_url;

注意:

(1)调用api接口时,只需将“http://www.baidu.com”替换为需要缩短的长网站即可。

(2)接口支持url参数。当符号出现在网址中时,请使用urlencode网址编码格式),否则参数可能会丢失。

(3)填写网址时,必须以http(s)://开头,否则可能导致生成的短网址无法访问原网站。

你可能感兴趣的:(2020新浪短网址批量生成API接口源码)