稳定、快速、免费的 API 接口服务
自定义随机密码生成
接口地址: http://api.52hyjs.com/api/pwd
返回格式: json
请求方式: get/post
请求示例: http://api.52hyjs.com/api/pwd?a=9
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
a | 是 | string | 选择输出密码位数[默认8位数] |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
code | string | 返回的状态码 |
msg | string | 返回提示信息 |
password | string | 返回生成的密码 |
返回示例:
{ "code": 200, "password": "Y3tAc6kh" }
错误码格式说明:
名称 | 类型 | 说明 |
---|---|---|
200 | string | 返回随机密码 |
201 | string | 参数不能为空 |
202 | string | 随机密码异常 |
代码示例:
<?php
header("Content-Type:text/html;charset=UTF-8");
date_default_timezone_set("PRC");
$a = 8";
$result = file_get_contents("https://api.52hyjs.com/api/rand.pwd.php?a=$a");
$arr=json_decode($result,true);
if ($arr['code']==200) {
echo $arr['password'];
} else {
echo $arr['msg'];
}
?>