File size: 9,466 Bytes
9c1cc33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
aade961
9c1cc33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ScraperProxy API</title>
    <style>
        :root {
            --primary-color: #3498db;
            --secondary-color: #2980b9;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-bg: #f5f7fa;
            --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 60%;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
        }
        
        h1 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 2.5rem;
        }
        
        h2 {
            color: var(--primary-color);
            margin: 25px 0 15px;
            font-size: 1.8rem;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 20px;
        }
        
        pre, .code-block {
            background-color: #282c34;
            color: #abb2bf;
            padding: 20px;
            border-radius: 6px;
            overflow-x: auto;
            font-family: 'Courier New', Courier, monospace;
            margin: 15px 0;
            white-space: pre-wrap;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .feature-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            margin-bottom: 30px;
        }
        
        .button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            margin: 10px 5px;
            border: none;
            cursor: pointer;
        }
        
        .button:hover {
            background-color: var(--secondary-color);
        }
        
        .button.accent {
            background-color: var(--accent-color);
        }
        
        .button.accent:hover {
            background-color: #c0392b;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .input-group input[type="text"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
        }
        
        .checkbox-group {
            margin: 15px 0;
        }
        
        #response-container {
            background-color: #f5f5f5;
            padding: 20px;
            border-radius: 6px;
            min-height: 100px;
            margin-top: 20px;
            white-space: pre-wrap;
            display: none;
        }
        
        ul {
            list-style-position: inside;
            margin: 10px 0;
        }
        
        ul li {
            margin-bottom: 5px;
        }
        
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>ScraperProxy API</h1>
            <p class="subtitle">强大的网页请求代理服务,轻松绕过访问限制</p>
            <div>
                <a href="/docs" class="button">API 文档</a>
                <a href="#try-it" class="button accent">立即尝试</a>
            </div>
        </header>
        
        <div class="section">
            <h2>支持的请求库</h2>
            <p>这是一个支持两种强大请求库的代理服务:</p>
            <ul>
                <li><strong>CloudScraper</strong> - 专门用于绕过 Cloudflare 保护</li>
                <li><strong>curl-cffi</strong> - 高性能的 cURL 实现</li>
            </ul>
        </div>
        
        <div class="features">
            <div class="feature-card">
                <h3>绕过访问限制</h3>
                <p>使用专业技术,轻松绕过常见的网站防护机制,如 Cloudflare 的反爬虫保护。</p>
            </div>
            <div class="feature-card">
                <h3>支持流式响应</h3>
                <p>通过流式响应处理大型数据,保持连接稳定,实现更高效的数据传输。</p>
            </div>
            <div class="feature-card">
                <h3>简单易用</h3>
                <p>简洁的 API 设计,只需一个 URL 参数即可使用,支持多种请求方法和自定义选项。</p>
            </div>
        </div>
        
        <div class="section">
            <h2>使用方法</h2>
            <p>基本请求格式:</p>
            <pre>GET /proxy?url=https://example.com
POST /proxy?url=https://example.com</pre>
            
            <h3>环境变量配置</h3>
            <ul>
                <li><strong>REQUEST_LIB</strong>: 选择请求库 (cloudscraper 或 curl_cffi)</li>
                <li><strong>PROXY</strong>: 设置代理服务器</li>
                <li><strong>TOKEN</strong>: 设置访问令牌</li>
            </ul>
            
            <h3>高级用法示例</h3>
            <div class="code-block"># 启用流式响应
GET /proxy?url=https://example.com&stream=true

# 自定义请求方法和头信息
POST /proxy
{
    "url": "https://example.com",
    "method": "POST",
    "headers": {"Custom-Header": "Value"},
    "data": {"key": "value"},
    "stream": true
}</div>
        </div>
        
        <div class="section" id="try-it">
            <h2>立即尝试</h2>
            <div class="input-group">
                <label for="url-input">输入要请求的 URL:</label>
                <input type="text" id="url-input" placeholder="https://example.com" value="https://example.com">
            </div>
            
            <div class="checkbox-group">
                <input type="checkbox" id="stream-checkbox" checked>
                <label for="stream-checkbox">启用流式响应</label>
            </div>
            
            <button id="send-request" class="button">发送请求</button>
            
            <div id="response-container"></div>
        </div>
    </div>
    
    <footer>
        <p>© 2025 ScraperProxy API. 所有权利保留。</p>
    </footer>
    
    <script>
        document.getElementById('send-request').addEventListener('click', async function() {
            const url = document.getElementById('url-input').value;
            const streamEnabled = document.getElementById('stream-checkbox').checked;
            const responseContainer = document.getElementById('response-container');
            
            if (!url) {
                alert('请输入有效的 URL');
                return;
            }
            
            responseContainer.style.display = 'block';
            responseContainer.textContent = '正在加载...';
            
            try {
                const proxyUrl = `/proxy?url=${encodeURIComponent(url)}&stream=${streamEnabled}`;
                
                if (streamEnabled) {
                    responseContainer.textContent = '';
                    const response = await fetch(proxyUrl);
                    const reader = response.body.getReader();
                    
                    while (true) {
                        const { done, value } = await reader.read();
                        if (done) break;
                        const text = new TextDecoder().decode(value);
                        responseContainer.textContent += text;
                    }
                } else {
                    const response = await fetch(proxyUrl);
                    const data = await response.text();
                    responseContainer.textContent = data;
                }
            } catch (error) {
                responseContainer.textContent = `错误: ${error.message}`;
            }
        });
    </script>
</body>
</html>