接口地址:https://api.bducds.com/api/get.title
返回格式:JSON
请求方式:GET/POST
请求示例:https://api.bducds.com/api/get.title/?url=bducds.com

请求参数说明:

名称 必填 类型 说明
  url string 需要查询标题的网址

返回参数说明:

名称 类型 说明
  code string 返回的状态码
  title string 返回查询到的网站标题

返回示例:

{
"code":"200",
"title":"小白安全博客 - 奶糖味的代言 -专注网络安全- 菜鸟安全博客 - 小白个人博客-黑帽SEO-互联网区块链-红客帝国-源码下载-资源分享-娱乐网-教程网"
}

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

  错误码 说明
  201 URL不能为空

系统级错误码参照:

  错误码 说明 旧版本(resultcode)

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

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

PHP演示:

<?php
header("Content-Type:text/html;charset=UTF-8");
date_default_timezone_set("PRC");
$url = "https://bducds.com";
$result = file_get_contents("https://api.bducds.com/api/get.title/?url=".$url);
print_r($result);
$arr=json_decode($result,true);
print_r($arr);
if ($arr['code']==200) {
    echo $arr['title'];
} else {
    echo $arr['code'];
}
?>