编辑: 南门路口 | 2019-07-17 |
三、列?出占?用资源 https://api.chiyunip.com/proxy/list?token={TOKEN} 返回 (与获取接?口相同) { "status": 0, "msg": null, "data": [ { "ip": "140.250.91.184", "id": "DOP-SD-WH-002-13", "s5_port":
1093 }, { "ip": "182.38.77.19", "id": "DOP-SD-WH-002-5", "s5_port":
1085 } ] }
四、释放占?用资源 https://api.chiyunip.com/proxy/release?id=DOP-SD-WH-001-1&token={TOKEN} 注意! 若?没有设置过期时间,资源必须主动释放! 成功 { "status": 0, "msg": null, "data": null } 失败:?无此接?口{"status": 1, "msg": "no such interface", "data": null } 失败:间隔过短 { "data": null, "status": 1, "msg": "release interface too often, redial after
20 seconds" }
五、签名认证?方式 使?用签名认证?方式,可以避免重放攻击和Token泄露,如果在不安全的环境部署服务,可使?用这种?方式进?行?认 证. Get / Release 接?口增加以下参数: username : ?用户名 timestamp : 时间戳 nonce : 随机字符串?,推荐16/32位Sign : md5(str(timestamp) + token + nonce) , ?大?小写?无关