端到端上手
从注册到第一张截图的完整流程。
创建 API Key
打开 API Keys,点击创建并复制完整密钥。
调用 /take
curl "http://localhost:3200/take?url=https://example.com&access_key=YOUR_KEY" -o out.pngconst res = await fetch(
'http://localhost:3200/take?url=' + encodeURIComponent('https://example.com'),
{ headers: { Authorization: 'Bearer YOUR_KEY' } },
);import requests
requests.get('http://localhost:3200/take', params={
'url': 'https://example.com',
'access_key': 'YOUR_KEY',
}).content