This API supports 1. You can enter an 11-digit mobile phone number to query the location, such as: 13858861234, 2. You can enter a 7-digit number segment to query The attribution address is: 1335586, 3. It supports number segments 13, 14, 15, 17, and 18. Friends in need can refer to it.
This API interface has been running stably since the SAE platform was launched in 2011. It has added support for segment 17. All collections are welcome and the limit is 10 concurrency
Detailed instructions for use
Interface address: http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api
Request method: GET
Request parameters:
Parameter name Type Required Parameter position Description Default value
app string is the urlParam module name (unchanged) mobile
controller string is the urlParam controller name index
action string is urlParam operation name api
mobile string is urlParam mobile phone number or number range 13800138000
Outfmt string is the expected result type of urlParam json
Request example:
http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile=13800138000
JSON return example:
?
2 3
4 5
|
{ "id":"80012", "Mobile":"13800138000", "Province":"u5317u4eac", "City":"u5317u4eac", "AreaCode":"010", "PostCode":"100000", "Operators":"u4e2du56fdu79fbu52a8", "Card":"GSM" } |
1 2 3 4 5 6 7 8 9 10 11 |
|
1 2 3 4 5 6 | function getMobileInfo($mobile) { $response = file_get_contents('http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile='.$mobile) $result = json_decode($response,true); return $result; } |
The above is the entire content of this article, I hope you all like it.