Files
cloudflare_temp_email/vitepress-docs/docs/zh/guide/feature/mail-api.md
Dream Hunter 9d84eb0634 feat: update docs (#204)
* feat: update docs

* feat: update docs
2024-05-05 17:45:02 +08:00

473 B

查看邮件 API

通过 HTTP API 查看邮件

这是一个 python 的例子,使用 requests 库查看邮件。

limit = 10
offset = 0
res = requests.post(
    f"http://localhost:8787/api/mails?limit={limit}&offset={offset}`;",
    json=send_body, headers={
        "Authorization": f"Bearer {你的JWT密码}",
        # "x-custom-auth": "<你的网站密码>", # 如果启用了自定义密码
        "Content-Type": "application/json"
    }
)