上传文件至 More

This commit is contained in:
2025-10-17 23:27:39 +08:00
parent 5b6e209097
commit eec0dc4749
5 changed files with 133 additions and 0 deletions

16
More/t.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
$jwt = file_get_contents("./jwt.txt"); // 你的 JWT
$options = [
'http' => [
'header' => "authorization: JWT " . $jwt . "\r\n" .
"Content-Type: application/json\r\n",
'method' => 'GET', // 或 POST、PUT 等
'ignore_errors' => true // 忽略 HTTP 错误码(如 401
]
];
$context = stream_context_create($options);
$response = file_get_contents("https://www.007idc.cn/v1/hosts/57431/module/status?type=host", false, $context);
echo $response;
?>