# 说明
判断邮箱是否已经存在
# url
https://apiv2.tapd.tencent.com/users/is_mail_exists
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
是 | string | 用户邮箱地址 |
# 调用示例及返回结果
# 判断邮箱是否已经存在
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://apiv2.tapd.tencent.com/users/is_mail_exists?email=xxx'
# curl 使用 OAuth Access Token 鉴权调用示例
curl -H 'Authorization: Bearer ACCESS_TOKEN' 'https://apiv2.tapd.tencent.com/users/is_mail_exists?email=xxx'
# 返回结果
{
"status": 1,
"data": 1,
"info": "success"
}
1
2
3
4
5
2
3
4
5
← 返回用户待办的任务 判断昵称是否已经存在 →