黄昏的阳光的gravatar头像
黄昏的阳光 2016-03-01 10:34:41

JAVA如何通过微信接口获取微信用户地理位置(网页获取和关注公众号获取)?

JAVA 获取微信用户地理位置(网页获取和关注公众号获取)

所有回答列表(2)
yepx2013的gravatar头像
yepx2013  LV7 2016年3月1日

基于http协议请求。 详情看官方API http://mp.weixin.qq.com/wiki/14/bb5031008f1494a59c6f71fa0f319c66.html

sunjiyun26的gravatar头像
sunjiyun26  LV9 2018年12月11日

~App({


  onLaunch: function () {
    var that = this;

    var jisnhutest = wxPromisify.wxPromisify(wx.getLocation);
    jisnhutest({
      type: 'wgs84'
    }).then(function (res) {
      //获取经纬度成功
      var latitude = res.latitude // 经度
      var longitude = res.longitude // 纬度
      that.globalData.latitude = latitude;
      that.globalData.longitude = longitude;
    }).catch(function () {
      console.error("get location failed")
    }).then(function () {
}

}

顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友