跳转到内容

Radium 智能链/智能链验证文档

来自维基教科书,开放世界中的开放书籍

智能链验证允许您使用尽可能少的步骤验证任何可下载文件:复制、粘贴、点击。本文档将涵盖智能链验证的用法、智能链验证 API 以及智能链验证链接的应用。

要使用智能链验证,只需输入直接下载链接。直接下载链接是指指向文件下载的链接,不会经过重定向或任何其他中断。
如果您忘记了链接的 http/https 前缀,智能链验证将尝试修复链接。虽然智能链验证很可能能够修复链接,但建议您包含适当的前缀,以避免任何不希望的结果。

注册文件

[编辑 | 编辑源代码]

请使用以下教程在智能链验证上注册下载。

链接/按钮工具

[编辑 | 编辑源代码]

如果您想向用户提供您托管的智能链验证下载链接,您可以使用以下工具

<a href="https://www.verify.software/link?link={{ insert your download link here }}">{{ insert your download button styling here }}</a>

基本 URL

[编辑 | 编辑源代码]

https://api.verify.software/api?url=

CURL 示例

[编辑 | 编辑源代码]
$ curl https://api.verify.software/api?url=https://github.com/ProjectRadium/Radium/releases/download/v1.4.2.1/radiumd-1.4.2.1.exe

{"message": "文件已由经过验证的用户成功验证。", "code": 0, "data": {"username": "tm2013", "verified": true, "title": "radiumd-1.4.2.1.exe", "timestamp": 1467084970, "timestamp_utc": "2016-06-28 03:36:10", "user_verified": true, "block": 558321}, "error": false}

Python 示例

[编辑 | 编辑源代码]
#/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
data = requests.get("https://api.verify.software/api?url=https://github.com/ProjectRadium/Radium/releases/download/v1.4.2.1/radiumd-1.4.2.1.exe").content
print data

{"message": "文件已由经过验证的用户成功验证。", "code": 0, "data": {"username": "tm2013", "verified": true, "title": "radiumd-1.4.2.1.exe", "timestamp": 1467084970, "timestamp_utc": "2016-06-28 03:36:10", "user_verified": true, "block": 558321}, "error": false}

华夏公益教科书