IP定位
腾讯地图 官方文档
通过终端设备IP地址获取其当前所在地理位置,精确到市级,常用于显示当地城市天气预报、初始化用户城市等非精确定位场景
基本说明:
接口地址:https://apis.map.qq.com/ws/location/v1/ip
返回格式:json/jsonp
请求方式:get
请求示例:https://apis.map.qq.com/ws/location/v1/ip?ip=61.135.17.68&key=yourkey
请求参数说明:
名称 类型 必填 说明
key string 必填 开发密钥 扫码关注公众号
ip string 选填 IP地址,缺省时会使用请求端的IP
output string 选填 返回格式
callback string 选填 JSONP方式回调函数
返回参数说明:
名称 类型 说明
- - -
JSON返回示例:
{
	"status": 0,
	"message": "query ok",
	"result": {
		"ip": "61.135.17.68",
		"location": {
			"lat": 39.90469,
			"lng": 116.40717
		},
		"ad_info": {
			"nation": "中国",
			"province": "北京市",
			"city": "北京市",
			"district": "",
			"adcode": 110000
		}
	}
}
服务级错误码参照
错误码 说明
310 请求参数信息有误
311 Key格式错误
306 请求有护持信息请检查字符串
110 请求来源未被授权
完整教学代码示例
<?php
class freeApi{
    private $apiUrl;
    private $appKey;

    public function __construct($appKey){
        $this->appKey = $appKey;
        $this->apiUrl = 'https://apis.map.qq.com/ws/location/v1/ip';
    }
    /**
     * 获取结果
     * @return string
     */
    public function getResult(){
        $paras = [
            'key' => $this->appKey,
            'ip' => '61.135.17.68',
        ];
        return $this->freeApiCurl($this->apiUrl,$paras);
    }
    /**
     * 请求接口返回内容
     * @param  string $url [请求的URL地址]
     * @param  string $params [请求的参数]
     * @return  string
     */
    public function freeApiCurl($url,$params=[]){
        if (!$params) return false;
        return file_get_contents($url.'?'.http_build_query($params));
    }
}
package main

import (
	"fmt"
	"io/ioutil"
	"log"
	"net/http"
)

const (
	APIURL   = "https://apis.map.qq.com/ws/location/v1/ip"
	APIKEY = "your key"
)

func main() {
	queryUrl := fmt.Sprintf("%s?key=%s&ip=61.135.17.68",APIURL,APIKEY)
	resp, err := http.Get(queryUrl)
	if err != nil {
		log.Println(err)
		return
	}

	defer resp.Body.Close()

	body, err := ioutil.ReadAll(resp.Body)

	if err != nil {
		fmt.Println(err)
		return
	}

	fmt.Println(string(body))
}