All Projects → openyun → Cn Mobile Location

openyun / Cn Mobile Location

Licence: mit
中国手机号码归属地接口

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cn Mobile Location

Phone
With a given country and phone number, validate and reformat the mobile phone number to the E.164 standard. The purpose of this is to allow us to send SMS to mobile phones only.
Stars: ✭ 531 (+901.89%)
Mutual labels:  phone, mobile
Arcoreinsideouttrackinggearvr
Inside Out Positional Tracking (6DoF) for GearVR/Cardboard/Daydream using ARCore v1.6.0
Stars: ✭ 150 (+183.02%)
Mutual labels:  phone, mobile
React Native Contacts
React Native Contacts
Stars: ✭ 1,369 (+2483.02%)
Mutual labels:  phone, mobile
Device Detector Js
A precise user agent parser and device detector written in TypeScript
Stars: ✭ 193 (+264.15%)
Mutual labels:  phone, mobile
Mobly
E2E test framework for tests with complex environment requirements.
Stars: ✭ 424 (+700%)
Mutual labels:  phone, mobile
Cht Core
The CHT Core Framework makes it faster to build responsive, offline-first digital health apps that equip health workers to provide better care in their communities. It is a central resource of the Community Health Toolkit.
Stars: ✭ 354 (+567.92%)
Mutual labels:  phone, mobile
Ws Scrcpy
Web client prototype for scrcpy.
Stars: ✭ 164 (+209.43%)
Mutual labels:  phone, mobile
React Phone Input 2
📞 Highly customizable phone input component with auto formatting
Stars: ✭ 446 (+741.51%)
Mutual labels:  phone, mobile
Crboxinputview
Verify code input view. Support security type for password.短信验证码输入框,支持密文模式
Stars: ✭ 749 (+1313.21%)
Mutual labels:  phone, mobile
Mybox
Easy tools of document, image, file, network, location, color, and media.
Stars: ✭ 45 (-15.09%)
Mutual labels:  location
Ionic Parse Server
Starter for integrating Ionic 3, Angular 4+ and Parse Server
Stars: ✭ 50 (-5.66%)
Mutual labels:  mobile
H5ui
Lightweight, elegant open source mobile UI style library.
Stars: ✭ 44 (-16.98%)
Mutual labels:  mobile
Brazilian Utils
Utils library for specific Brazilian businesses
Stars: ✭ 1,023 (+1830.19%)
Mutual labels:  phone
Lenz
Console based MAP 🗺 : with lots of features 🤩
Stars: ✭ 51 (-3.77%)
Mutual labels:  location
Moviesdaily
Movies and TV Show mobile application. Built using react native.
Stars: ✭ 45 (-15.09%)
Mutual labels:  mobile
Hrcarmarkeranimation
This android library is helpful for google map marker animation with Smooth turn and movement.
Stars: ✭ 52 (-1.89%)
Mutual labels:  location
Svelte Pick A Place
Javascript location picker built with Svelte
Stars: ✭ 44 (-16.98%)
Mutual labels:  location
Goloc
A flexible tool for application localization using Google Sheets.
Stars: ✭ 42 (-20.75%)
Mutual labels:  mobile
Arg.js
🇦🇷 🛠 NPM library. Validation of Argentinian bank account numbers, IDs and phone numbers
Stars: ✭ 52 (-1.89%)
Mutual labels:  phone
Audio player flutter
🎧 Apple Music / Tidal Audio Player for Flutter
Stars: ✭ 52 (-1.89%)
Mutual labels:  mobile

cn-mobile-location

中国手机号码归属地接口

环境要求

安装运行

  git clone https://github.com/openyun/cn-mobile-location.git
  cd cn-mobile-location
  npm install 
  npm start

接口相关

curl测试

curl http://localhost:3000/mobile/13488888888

返回JSON数据示例

{
  "status": 1,
  "message": "success",
  "data": {
    "prefix": "134",
    "mobile": "13488888888",
    "province": "北京",
    "city": "北京",
    "isp": "移动",
    "code": "010",
    "zipcode": "100000",
    "types": "中国移动 GSM"
  },
  "timestamp": 1499345271
}

字段说明

根节点:

字段名称 类型 说明
status int 接口消息状态,1=成功,0=失败
message string 接口消息内容
data object 返回数据
timestamp int 时间戳

data节点:

字段名称 类型 说明
prefix string 手机号码号段
mobile string 查询的手机号码
province string 归属地省份
city string 归属地城市
isp string 运营商
code string 行政区号
zipcode string 邮政编码
types string 运营商描述

JSONP支持

curl http://localhost:3000/mobile/13488888888?callback=xxx

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].