Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

API必需参数

参数名

类型

是否必填

描述

apiKey

string

用户ApiKey

API响应参数

参数名

类型

是否必存在

描述

code

number

响应码

msg

string

响应消息

data

object

响应数据

所有API响应参数code200时表示请求业务执行成功, 其他值均为请求失败。具体原因可参考全局响应码。

这里的业务响应码200并非HTTP协议的响应码,请不要混淆!!!

请求示例:

import requests

response = requests.get("https://api.online-disposablemail.com/api/balance?apiKey=6795a4dff51dioaw218b4783c08826e")
if response.status_code == 200 and response.json()["code"] == 200:
    # API业务成功
    print(response.json())

  • No labels