请求地址
http://54zk.com/apis/v1/makeShortURL
请求方式
GET
输入参数字段
参数名 | 类型 | 是否必须 | 描述 | 示例值 |
---|---|---|---|---|
urls | String | 是 | urlencode('链接,多个链接之间使用\n分隔') | http%3a%2f%2fwww.baidu.com |
format | String | 否 | 调用格式,值为json或jsonp或不传,不传时返回数据为json | |
callback | String | 否 | 回调函数名,当format=jsonp时必传 | |
key | String | 是 | 登录后可以查看到,传入这个值,用户可对生成的短网址进行管理,key值的格式为: 开发者ID@开发者密钥 | |
expireDate | String | 否 | 例:expireDate=2019-03-31 |
返回结果参数
参数名 | 类型 | 描述 | 示例值 |
---|---|---|---|
url | String | 生成的短网址,如果生成失败,则返回原链接 | http://54zk.com/abcdef |
err | String | 异常描述 | 无异常该字段为空 |
请求示例
TXT格式
请求:http://54zk.com/apis/v1/makeShortURL?url=urlencode('http://www.baidu.com')&key=5c0f89c0042c2@55f3a49150625ab&expireDate=2019-03-31
返回:http://54zk.com/abcdef
JSON格式
请求:http://54zk.com/apis/v1/makeShortURL?format=json&url=urlencode('http://www.baidu.com')&key=5c0f89c0042c2@55f3a49150625ab&expireDate=2019-03-31
返回:{"data":[{"shortUrl":"http://54zk.com/abcdef","url":"http://www.baidu.com"}],"msg":"OK","status":200,"success":true}
JSONP格式
请求:http://54zk.com/apis/v1/makeShortURL?format=jsonp&url=urlencode('http://www.baidu.com')&callback=callbackname&key=5c0f89c0042c2@55f3a49150625ab&expireDate=2019-03-31
返回:callbackname({"data":[{"shortUrl":"http://54zk.com/abcdef","url":"http://www.baidu.com"}],"msg":"OK","status":200,"success":true})