中国身份认证网·API接口 朋友,您是否正在经营一个网站?您是否被一些网络骗子搅得无法正常运行?如果这样的话,建议您为您的网站增加身份确认关卡。本网免费为大家提供用户身份联网确认接口: 接口地址:http://www.e-mailverify.com/api.asp 功能:联网检测指定e-mail的主人是否通过真实身份认证。 使用前提:在调用本接口前必须首先向被检测e-mail发送验证码并予以确认,只有证明您的会员拥有该e-mail登陆权限后,才能进行真实身份检测。否则您的检测是毫无意义的。 参数传输方式:GET 参数:email —— 即被查询的e-mail 返回值:0 —— 未认证用户 1 —— 认证已过期 9位数字 —— 已经通过认证的用户。这9位数字表示该会员在中国身份认证网的数字编号。每个会员的编号不会相同。如果编号相同则证明是同一个人。 调用示例:http://www.e-mailverify.com/api.asp?email=webmaster@e-mailverify.com
中国身份认证网·API接口
[是否认证查询][会员登陆][首页]
ASP应用示例: <% function getverifyid(emailverify) on error resume next Dim objHttpRequest URL="http://www.e-mailverify.com/api.asp?email="&emailverify set objHttpRequest=CreateObject("MSXML2.ServerXMLHTTP") if objHttpRequest is Nothing Then getverifyid=-1 else objHttpRequest.open "GET",URL,False objHttpRequest.send() if objHttpRequest.status<>200 then getverifyid=-1 else getverifyid=objHttpRequest.responseText end if end if Set objHttpRequest=Nothing end function email="webmaster@e-mailverify.com" emvid=getverifyid(email) if IsNumeric(emvid) and (len(emvid)=9) then response.write email & "已经通过认证!" else response.write email & "没有通过认证!" end if %>
[推广][收藏本网][客户服务中心]