【www.gdgbn.com--安卓教程】

asp教程.net 获取移动手机号码接口


获得国内手机号码归属地省份、地区和手机卡类型信息
输入参数:mobilecode = 字符串(手机号码,最少前7位数字),userid = 字符串(商业用户id) 免费用户为空字符串;返回数据:字符串(手机号码:省份 城市 手机卡类型)。


soap 1.1
以下是 soap 1.2 请求和响应示例。所显示的占位符需替换为实际值。

post /webservices/mobilecodews.asmx http/1.1
host: webservice.webxml.com.cn
content-type: text/xml; charset=utf-8
content-length: length
soapaction: "http://webxml.com.cn/getmobilecodeinfo"



 
   
      string
      string
   

 


http/1.1 200 ok
content-type: text/xml; charset=utf-8
content-length: length



 
   
      string
   

 


soap 1.2
以下是 soap 1.2 请求和响应示例。所显示的占位符需替换为实际值。

post /webservices/mobilecodews.asmx http/1.1
host: webservice.webxml.com.cn
content-type: application/soap+xml; charset=utf-8
content-length: length



 
   
      string
      string
   

 


http/1.1 200 ok
content-type: application/soap+xml; charset=utf-8
content-length: length



 
   
      string
   

 


http get
以下是 http get 请求和响应示例。所显示的占位符需替换为实际值。

get /webservices/mobilecodews.asmx/getmobilecodeinfo?mobilecode=string&userid=string http/1.1
host: webservice.webxml.com.cn

http/1.1 200 ok
content-type: text/xml; charset=utf-8
content-length: length


string
http post
以下是 http post 请求和响应示例。所显示的占位符需替换为实际值。

post /webservices/mobilecodews.asmx/getmobilecodeinfo http/1.1
host: webservice.webxml.com.cn
content-type: application/x-www-form-urlencoded
content-length: length

mobilecode=string&userid=string
http/1.1 200 ok
content-type: text/xml; charset=utf-8
content-length: length


string

本文来源:http://www.gdgbn.com/shoujikaifa/29229/