微信短链接跳转API接口返回Api列表
            微信短链接跳转
请求地址
            http://www.taoyanhao.com/Api/Rest.ashx?type=GenShortUrl
                请求参数
            
            | 名称 | 类型 | 必须 | 描述 | 
|---|---|---|---|
| uid | string | 是 | 网站会员id | 
| ticks | string | 是 | 13位时间戳,格式为1557052966760,API允许请求最大时间误差为10分钟。 | 
| longUrl | string | 是 | 网址 | 
| times | string | 是 | 短链接访问次数 | 
| token | string | 是 | 本次请求的签名,算法为:MD5(uid+ticks+longUrl+secret)。
 【secret在会员中心里,点此查看】  | 
                                
                返回结果
            
            失败时:
{
    "success": false,
    "info": "非法请求"
}
                
                成功时:
{
    "data": {
        "shorturl": "http://www.taoyanhao.com/s/k***G",
        "times": "1"
    },
    "balance": 55071.0000,
    "point": 0.0000,
    "success": true,
    "time": "2021/3/27 19:30:51"
}
                
            
                返回参数
            
            | 名称 | 类型 | 描述 | 
|---|