帮助与支持
  • 首页
  • 开放接口API
    • 必应每日一图
    • 节日纪念日
    • 红色语录
    • 综合图片
    • 实时时间
  • 常见问题解答
    • 视频相关问题
    • 音乐相关问题
    • 文件下载相关问题
    • TFboys站点说明手册
  • 技术支持&联系方式
Powered by GitBook
On this page
  1. 开放接口API

红色语录

1. 接口概述

redtxt.php 是一个用于随机抽取名言警句的简单 RESTful API。该接口从预定义的名言警句列表中随机选择一条,并以 JSON 格式返回给客户端。

2. 请求 URL

http://api.holytreasure.top/redtxt.php
http://api.holytreasure.space/redtxt.php

3. 请求方法

  • 方法: GET

4. 返回数据格式

  • 内容类型: application/json

  • 响应示例:

{
    "content": "问苍茫大地,谁主沉浮!",
    "author": "",
    "source": ""
}

5. 响应状态码

  • 200 OK: 请求成功,返回一条随机名言警句。

  • 其他状态码: 如果出现其他问题,将返回相应的 HTTP 状态码。

6. 错误处理

  • 请求失败: 如果出现任何错误,响应将包含一个错误对象,如下所示:

{
    "error": "Failed to retrieve quote"
}

7. 使用示例

7.1 JavaScript 示例

function loadQuote() {
    fetch('http://api.holytreasure.top/redtxt.php')
        .then(response => response.json())
        .then(data => {
            const quoteElement = document.getElementById('quote');
            quoteElement.innerHTML = `
                名言警句: ${data.content}<br>
                作者: ${data.author}<br>
                出处: ${data.source}<br>
            `;
        })
        .catch(error => {
            console.error('Error:', error);
            alert('加载名言警句失败,请稍后再试。');
        });
}

// 页面加载时立即加载一条名言警句
window.onload = loadQuote;

7.2 HTML + JavaScript 示例

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>名言警句</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
        }
        .container {
            text-align: center;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        h1 {
            color: #333;
            margin-bottom: 10px;
        }
        p {
            font-size: 1.2em;
            color: #666;
        }
        button {
            background-color: #007BFF;
            color: white;
            padding: 10px 20px;
            font-size: 1em;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #0056b3;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>每日名言警句</h1>
        <p id="quote"></p>
        <button onclick="loadQuote()">刷新</button>
    </div>

    <script>
        function loadQuote() {
            fetch('http://api.holytreasure.top/redtxt.php')
                .then(response => response.text())
                .then(data => {
                    const quoteElement = document.getElementById('quote');
                    quoteElement.innerHTML = data;
                })
                .catch(error => console.error('Error:', error));
        }

        // 页面加载时立即加载一条名言警句
        window.onload = loadQuote;
    </script>
</body>
</html>
Previous节日纪念日Next综合图片

Last updated 9 months ago