问题描述
今天写了一个新网域名接口的程序结果出现了几个问题不知道怎么解决第一个是API的问题我把服务器的IP绑定了API新网接口提交时候要的是服务器的IP,但是我提交以后传到新网那边的却是客户端IP,怎么才能提交服务器的IP第二个值传过去以后获得的是num=1&enc=E&name1=sina.com&chk1=0&err=auth-failure&IP=119-119-235-14这么一个值.(值是在新网的网页上)我怎么才能把这个字符串转换成变量传到我自己的页面中去下面的是新网接口的说明Check接口POST地址:http://api.xinnet.com/domain/api.gb?method=checkhttp://api.xinnet.com/domain/api.gb?method=check&charset=utf-8(utf-8字符集)POST参数:name名字;1个,没有后缀enc编码,E,G;1个;suffix后缀;1-N个,域名后缀.com/.net/.org/.中国/cnaddr/.公司/...client代理号;1个例如:name=abc&enc=E&suffix=.com&suffix=.net&suffix=.cn&client=agent111POST数据,必须进行URL编码验证:client和POST的来源IP必须与该代理填写的地址一致返回结果:num域名数量enc编码name[1--N]域名,名字+后缀N=numchk[1--N]N=num查询结果:0不可注册100可以注册信息编码:auth-failure认证失败例如:num=3&enc=E&name1=abc.com&chk1=0&name2=abc.net&chk2=100&name3=abc.org&chk3=-100注意:通用网址suffix=cnaddr(目前仅提供老通用网址续费,不提供注册服务)问题补充:补充一下问题1,如何让新网获得我的服务器IP而不是客户端IP2.新网传回来值以后我如何获得.并且传到我的页面当中去
解决方案
解决方案二:
你可以参考
解决方案三:
组件网页头部<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><title>域名注册</title><!--#includefile="Const.asp"-->Const.asp<%'*********************************************************'*API接口参数设置'*********************************************************'代理号ConstAgentId="agent11111"'修改为您的代理号'接口连接密码ConstlinkPassword="11111"'修改为您在代理后中增加IP提交的接口密码'*********************************************************'*下面为API系统接口地址'*如果网页字符集为Utf-8时请修改为字符集utf-8的接口'*********************************************************'查询接口ConstCheckUrl="http://api.xinnet.com/domain/api.gb?method=check"'GB2312'ConstCheckUrl="http://api.xinnet.com/domain/api.gb?method=check&charset=utf-8"'utf-8字符集'注册接口ConstRegisterUrl="http://api.xinnet.com/domain/api.gb?method=Register"'GB2312'ConstRegisterkUrl="http://api.xinnet.com/domain/api.gb?method=Register&charset=utf-8"'utf-8字符集'续费接口ConstDomainRenewUrl="http://api.xinnet.com/domain/api.gb?method=DomainRenew"'GB2312'ConstDomainRenewUrl="http://api.xinnet.com/domain/api.gb?method=DomainRenew&charset=utf-8"'utf-8字符集'查询域名是否注册成功ConstStatusUrl="http://api.xinnet.com/domain/api.gb?method=Status"'GB2312'ConstStatusUrl="http://api.xinnet.com/domain/api.gb?method=Status&charset=utf-8"'utf-8字符集'修改域名信息ConstModifyContactorUrl="http://api.xinnet.com/domain/api.gb?method=ModifyContactor"'GB2312'ConstModifyContactorUrl="http://api.xinnet.com/domain/api.gb?method=ModifyContactor&charset=utf-8"'utf-8字符集'修改域名DNS接口ConstModDnsUrl="http://api.xinnet.com/domain/api.gb?method=ModDns"'ConstModDnsUrl="http://api.xinnet.com/domain/api.gb?method=ModDns&charset=utf-8(utf-8字符集)'获取产品密码接口ConstGetProductKeyUrl="http://api.xinnet.com/domain/api.gb?method=GetProductKey"'ConstGetProductKeyUrl="http://api.xinnet.com/domain/api.gb?method=GetProductKey&charset=utf-8(utf-8字符集)'获取产品密码接口ConstChangeProductKeyUrl="http://api.xinnet.com/domain/api.gb?method=ChangeProductKey"'ConstChangeProductKeyUrl="http://api.xinnet.com/domain/api.gb?method=ChangeProductKey&charset=utf-8(utf-8字符集)'查询域名解析记录接口ConstDomainDNSQueryUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSQuery"'ConstDomainDNSQueryUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSQuery&charset=utf-8(utf-8字符集)'添加域名解析记录接口ConstDomainDNSAddUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSAdd"'ConstDomainDNSAddUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSAdd&charset=utf-8(utf-8字符集)'修改域名解析记录接口ConstDomainDNSModUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSMod"'ConstDomainDNSModUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSMod&charset=utf-8(utf-8字符集)'删除域名解析记录接口ConstDomainDNSDelUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSDel"'ConstDomainDNSDelUrl="http://api.xinnet.com/domain/api.gb?method=DomainDNSDel&charset=utf-8(utf-8字符集)'查询本域名下的DNSConstGetSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=GetSelfDNS"'ConstGetSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=GetSelfDNS&charset=utf-8(utf-8字符集)'注册本域名下的DNSConstAddSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=AddSelfDNS"'ConstAddSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=AddSelfDNS&charset=utf-8"'(utf-8字符集)'修改本域名下的DNSConstModSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=ModSelfDNS"'ConstModSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=ModSelfDNS&charset=utf-8(utf-8字符集)'删除本域名下的DNSConstDelSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=DelSelfDNS"'ConstDelSelfDNSUrl="http://api.xinnet.com/domain/api.gb?method=DelSelfDNS&charset=utf-8(utf-8字符集)%>就说这么多!