请求地址
http://api.ws91.cn/api.php
请求方式
GET
输入参数字段
参数名 | 类型 | 是否必须 | 描述 | 示例值 |
---|---|---|---|---|
url | String | 是 | urlencode('链接') | https%3A%2F%2Fweixin.qq.com%2F |
domain | String | 否 | 可选择域名: 1 代表:mrw.so; | |
format | String | 否 | 调用格式,值为json或jsonp或不传,不传时返回数据为text | |
callback | String | 否 | 回调函数名,当format=jsonp时必传 | |
key | String | 是 | 登录后可以查看到,传入这个值,用户可对生成的短网址进行管理,key值的格式为: 开发者ID@开发者密钥 | |
expireDate | String | 否 | 例:expireDate=2030-03-31 |
返回结果参数
参数名 | 类型 | 描述 | 示例值 |
---|---|---|---|
url | String | 生成的短网址,如果生成失败,则返回原链接 | //ws91.cn/abcdef |
err | String | 异常描述 | 无异常该字段为空 |
请求示例
TXT格式
请求:http://api.ws91.cn/api.php?url=urlencode('https://weixin.qq.com')&key=5c0f89c0042c2@55f3a49150625ab&expireDate=2030-03-31&domain=1
返回:http://mrw.so/abcdef
JSON格式
请求:http://api.ws91.cn/api.php?format=json&url=urlencode('https://weixin.qq.com')&key=5c0f89c0042c2@55f3a49150625ab&expireDate=2030-03-31&domain=1
返回:{"url":"http://mrw.so/abcdef","err":""}
JSONP格式
请求:http://api.ws91.cn/api.php?format=jsonp&url=urlencode('https://weixin.qq.com')&callback=callbackname&key=5c0f89c0042c2@55f3a49150625ab&expireDate=2030-03-31&domain=1
返回:callbackname({"url":"http://mrw.so/abcdef","err":""})