接口地址:https://api.bducds.com/api/wdz/
返回格式:JSON
请求方式:GET
请求示例:https://api.bducds.com/api/wdz/?type=json

请求参数说明:

名称 必填 类型 说明
  type string json

返回参数说明:

名称 类型 说明
  text string 返回的内容

返回示例:

{"text":"\u201c\u4f60\u6709\u4e24\u4e2a\u53ef\u7231\u4e4b\u5904\u201d \u201c\u54ea\u4e24\u4e2a?\u201d 1.\u4f60\u5f88\u53ef\u7231 2.\u6211\u53ef\u7231\u4f60\u4e86\r\n"}

服务级错误码参照(error_code):

  错误码 说明
  null 空!

系统级错误码参照:

  错误码 说明 旧版本(resultcode)

错误码格式说明(示例:200201):

  2 002 01
  服务级错误(1为系统级错误) 服务模块代码(即数据ID) 具体错误代码

PHP演示:

<?php
header("Content-Type:text/html;charset=UTF-8");
date_default_timezone_set("PRC");
$result = file_get_contents("https://api.bducds.com/api/wdz/?type=json");
$arr=json_decode($result,true);
if ($arr['text']!='') {
    echo $arr['text'];
} else {
    echo 'error';
}
?>