360热搜榜
equalizer 累计使用:924195
请求地址 https://free.wqwlkj.cn/wqwlapi/360_hot.php
请求示例 https://free.wqwlkj.cn/wqwlapi/360_hot.php?n=20&type=json
请求方式 GET
返回格式 JSON
{
"code": 1,
"msg": "360热点获取成功",
"data": [
{
"NO": 1,
"title": "CNN直播吵起来了",
"hot": 76066
},
{
"NO": 2,
"title": "多地发钱奖励结婚",
"hot": 74072
},
{
"NO": 3,
"title": "月入5万只攒十万",
"hot": 72646
},
{
"NO": 4,
"title": "女儿回应48岁妈怀孕",
"hot": 72139
},
{
"NO": 5,
"title": "韩国家学者中国任职",
"hot": 71501
},
{
"NO": 6,
"title": "卤味三巨头关数千家",
"hot": 70923
},
{
"NO": 7,
"title": "和府捞面同面不同价",
"hot": 70141
},
{
"NO": 8,
"title": "美国前童星苏菲去世",
"hot": 68201
},
{
"NO": 9,
"title": "熊孩子点篝火引野火",
"hot": 67701
},
{
"NO": 10,
"title": "警方回应猫被砍四肢",
"hot": 66300
},
{
"NO": 11,
"title": "拆二代败光5套房",
"hot": 65517
},
{
"NO": 12,
"title": "爱泼斯坦案证人自杀",
"hot": 63171
},
{
"NO": 13,
"title": "百万粉网红上岸复旦",
"hot": 62425
},
{
"NO": 14,
"title": "赴港带超19支烟被罚",
"hot": 60470
},
{
"NO": 15,
"title": "李心月向杨颖道歉",
"hot": 59871
},
{
"NO": 16,
"title": "景区回应爬山奖3万",
"hot": 58368
},
{
"NO": 17,
"title": "花6万种牙全卸掉",
"hot": 56673
},
{
"NO": 18,
"title": "相信男友被骗12万",
"hot": 55512
},
{
"NO": 19,
"title": "地铁口5平米无人认领",
"hot": 53264
},
{
"NO": 20,
"title": "四川白玉县4.9级地震",
"hot": 50805
}
],
"from": "问情免费api"
}
参数名称 | 是否必需 | 参数说明 |
---|---|---|
n |
否 | 返回数量,最大为40,不填默认40 |
type |
否 | 可选text json 默认text |
参数名称 | 参数类型 | 参数说明 |
---|---|---|
code |
integer |
1 成功 -1失败 |
msg |
string |
返回信息 |
data |
string |
返回数据 data[title]:标题,data[hot]:热度 |
from |
string |
来源 |
更新时间 2023-12-17 20:52:37
状态码 | 状态说明 |
---|---|
400 | 请求错误 |
403 | 请求被服务器拒绝 |
404 | 请求服务器失败 |
500 | 服务器错误 |
503 | 服务器维护 |
GET方法
$url = 'https://free.wqwlkj.cn/wqwlapi/360_hot.php';
$data = '?n=20&type=json';
$get = $url.$data;
$result = file_get_contents($get);
if ($result) {
//成功
echo $result;
} else {
//失败
}
POST方法
$url = 'https://free.wqwlkj.cn/wqwlapi/360_hot.php';
$data = array(
  'n' => '20',
  'type' => 'json',
);
$data = http_build_query($data);
$option = array('http'=>array('method'=>'POST','content'=>$data));
$context = stream_context_create($option);
$result = file_get_contents($url,false,$context);
if ($result) {
//成功
echo $result;
} else {
//失败
}
GET方法
var url = "https://free.wqwlkj.cn/wqwlapi/360_hot.php"
var data = "?n=20&type=json"
var xhrGet = new XMLHttpRequest();
xhrGet.open('GET', url + data, true);
xhrGet.send();
xhrGet.onreadystatechange = function() {
if (xhrGet.readyState == 4 && xhrGet.status == 200) {
//成功
var result = xhrGet.responseText;
console.log(result);
} else {
//失败
}
};
POST方法
var url = "https://free.wqwlkj.cn/wqwlapi/360_hot.php"
var data = "n=20&type=json"
var xhrPost = new XMLHttpRequest();
xhrPost.open('POST', url, true);
xhrPost.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhrPost.send(data);
xhrPost.onreadystatechange = function() {
if (xhrPost.readyState == 4 && xhrPost.status == 200) {
//成功
var result = xhrPost.responseText;
console.log(result);
} else {
//失败
}
};
GET方法
new Thread(){
public void run() {
String path = "https://free.wqwlkj.cn/wqwlapi/360_hot.php";
String data = "?n=20&type=json";
try {
URL url = new URL(path + data);
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
int code = connection.getResponseCode();
if (code == 200) {
//成功
InputStreamReader isr = new InputStreamReader(connection.getInputStream());
BufferedReader bufferedreader = new BufferedReader(isr);
String string;
StringBuilder stringbuilder = new StringBuilder();
while ((string = bufferedreader.readLine()) != null) {
stringbuilder.append(string);
}
final String result = stringbuilder.toString();
System.out.println(result);
} else {
//失败
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}}.start();
POST方法
new Thread(){
public void run() {
String path = "https://free.wqwlkj.cn/wqwlapi/360_hot.php";
String data = "n=20&type=json";
try {
URL url = new URL(path);
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(true);
connection.getOutputStream().write(data.getBytes());
int code = connection.getResponseCode();
if (code == 200) {
//成功
InputStreamReader isr = new InputStreamReader(connection.getInputStream());
BufferedReader bufferedreader = new BufferedReader(isr);
String string;
StringBuilder stringbuilder = new StringBuilder();
while ((string = bufferedreader.readLine()) != null) {
stringbuilder.append(string);
}
final String result = stringbuilder.toString();
System.out.println(result);
} else {
//失败
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}}.start();
GET方法
url="https://free.wqwlkj.cn/wqwlapi/360_hot.php"
data=url.."?n=20&type=json"
Http.get(data,function(code,content,data)
if code==200 then
--成功
print(content)
else
--失败
end
end)
POST方法
url="https://free.wqwlkj.cn/wqwlapi/360_hot.php"
data="n=20&type=json"
Http.post(url,data,function(code,content,data)
if code==200 then
--成功
print(content)
else
--失败
end
end)
GET方法
变量 网络GET操作 为 网络操作 = 创建 网络操作()
变量 GET数据 为 文本型 = "?n=20&type=json"
网络GET操作.取网页源码("https://free.wqwlkj.cn/wqwlapi/360_hot.php" + GET数据)
事件 网络GET操作:取网页源码结束(结果 为 文本型,cookie 为 文本型)
//成功
调试输出(结果)
结束 事件
事件 网络GET操作:取网页源码失败(响应码 为 文本型)
//失败
结束 事件
POST方法
变量 网络POST操作 为 网络操作 = 创建 网络操作()
变量 POST数据 为 文本型 = "n=20&type=json"
网络POST操作.发送数据("https://free.wqwlkj.cn/wqwlapi/360_hot.php",POST数据)
事件 网络POST操作:发送数据结束(结果 为 文本型,cookie 为 文本型)
//成功
调试输出(结果)
结束 事件
事件 网络POST操作:发送数据失败(响应码 为 文本型)
//失败
结束 事件
GET方法
s url="https://free.wqwlkj.cn/wqwlapi/360_hot.php"
s data="?n=20&type=json"
ss(url+data,get)
t(){
hs(get,result)
f(result!=null){
//成功
syso(result)
}else{
//失败
}
}
POST方法
s url="https://free.wqwlkj.cn/wqwlapi/360_hot.php"
s data="n=20&type=json"
t(){
hs(url,data,"utf-8",result)
f(result!=null){
//成功
syso(result)
}else{
//失败
}
}
反馈时间 | 反馈接口 | 反馈内容 | 反馈者IP |
---|