新网更改接口地址后,我现在域名查询就不好使了,请兄弟们帮我一把吧~~~!!!新网域名查询api接口程序感激不尽呀!

解决方案 »

  1.   

    告诉你查询原理.然后自己去写.连接 whois server 的43 端口. 按 whois 协议发送 域名.然后从返回中 正则出你想要的内容即可.
      

  2.   

    有现成的程序不?新网新的api接口实在让人挠头,感觉文档写的有问题!
      

  3.   

    你们出点Money找 mrshelly 写一个吧!:)
      

  4.   

    唐网科技
    http://www.maxtang.com.cn/cha/域名查询简单接口.rar前段时间有小调整不能用,现在可以了,来下吧免费的!
      

  5.   


    组件网页头部<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>域名注册</title>
    <!--#include file="Const.asp"-->Const.asp<%
    '*********************************************************
    '* API接口参数设置
    '*********************************************************'代理号
    Const AgentId = "agent11111" '修改为您的代理号'接口连接密码
    Const linkPassword = "11111" '修改为您在代理后中增加IP提交的接口密码'*********************************************************
    '*下面为API系统接口地址
    '*如果网页字符集为Utf-8时请修改为字符集utf-8的接口
    '*********************************************************'查询接口
    Const CheckUrl = "http://api.xinnet.com/domain/api.gb?method=check" 'GB2312
    'Const CheckUrl = "http://api.xinnet.com/domain/api.gb?method=check&charset=utf-8" 'utf-8字符集'注册接口
    Const RegisterUrl = "http://api.xinnet.com/domain/api.gb?method=Register" 'GB2312
    'Const RegisterkUrl = "http://api.xinnet.com/domain/api.gb?method=Register&charset=utf-8" 'utf-8字符集'续费接口
    Const DomainRenewUrl = "http://api.xinnet.com/domain/api.gb?method=DomainRenew" 'GB2312
    'Const DomainRenewUrl = "http://api.xinnet.com/domain/api.gb?method=DomainRenew&charset=utf-8" 'utf-8字符集'查询域名是否注册成功
    Const StatusUrl ="http://api.xinnet.com/domain/api.gb?method=Status"  'GB2312
    'Const StatusUrl ="http://api.xinnet.com/domain/api.gb?method=Status&charset=utf-8" 'utf-8字符集'修改域名信息
    Const ModifyContactorUrl ="http://api.xinnet.com/domain/api.gb?method=ModifyContactor"  'GB2312
    'Const ModifyContactorUrl ="http://api.xinnet.com/domain/api.gb?method=ModifyContactor&charset=utf-8" 'utf-8字符集'修改域名DNS接口
    Const ModDnsUrl = "http://api.xinnet.com/domain/api.gb?method=ModDns"
    'Const ModDnsUrl = "http://api.xinnet.com/domain/api.gb?method=ModDns&charset=utf-8 (utf-8字符集)'获取产品密码接口
    Const GetProductKeyUrl = "http://api.xinnet.com/domain/api.gb?method=GetProductKey"
    'Const GetProductKeyUrl = "http://api.xinnet.com/domain/api.gb?method=GetProductKey&charset=utf-8 (utf-8字符集)'获取产品密码接口
    Const ChangeProductKeyUrl = "http://api.xinnet.com/domain/api.gb?method=ChangeProductKey"
    'Const ChangeProductKeyUrl = "http://api.xinnet.com/domain/api.gb?method=ChangeProductKey&charset=utf-8 (utf-8字符集)'查询域名解析记录接口
    Const DomainDNSQueryUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSQuery"
    'Const DomainDNSQueryUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSQuery&charset=utf-8 (utf-8字符集)'添加域名解析记录接口
    Const DomainDNSAddUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSAdd"
    'Const DomainDNSAddUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSAdd&charset=utf-8 (utf-8字符集)'修改域名解析记录接口
    Const DomainDNSModUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSMod"
    'Const DomainDNSModUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSMod&charset=utf-8 (utf-8字符集)'删除域名解析记录接口
    Const DomainDNSDelUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSDel"
    'Const DomainDNSDelUrl = "http://api.xinnet.com/domain/api.gb?method=DomainDNSDel&charset=utf-8 (utf-8字符集)'查询本域名下的DNS
    Const GetSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=GetSelfDNS"
    'Const GetSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=GetSelfDNS&charset=utf-8 (utf-8字符集)'注册本域名下的DNS
    Const AddSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=AddSelfDNS"
    'Const AddSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=AddSelfDNS&charset=utf-8" ' (utf-8字符集)'修改本域名下的DNS
    Const ModSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=ModSelfDNS"
    'Const ModSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=ModSelfDNS&charset=utf-8 (utf-8字符集)'删除本域名下的DNS
    Const DelSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=DelSelfDNS"
    'Const DelSelfDNSUrl = "http://api.xinnet.com/domain/api.gb?method=DelSelfDNS&charset=utf-8 (utf-8字符集)%>
    就说这么多!