在 IE 11 上使用 Navigator.geolocation API 后,我们如何防止 HTTP POST 到 inference.location.live.net?
After using Navigator.geolocation API on IE 11, How do we prevent HTTP POST to inference.location.live.net?
我们已经开始在 IE 11 上使用 Navigator.geolocation API 和 HTML 5,并开始看到从无处向 URL“https://inference.location.live.net/inferenceservice/v21/Pox/GetLocationUsingFingerprint”,我需要帮助来理解是哪个 API 触发了这个特定的调用(IE 11 / geolocation API),以及我们如何不发送带有完整地理定位功能的请求。
任何帮助将不胜感激。
无法删除 HTTP POST 调用,因为它根据可用的网络信息(IP 地址和附近的 WiFi 网络)执行实际的地理定位
Chrome 和 Firefox 也将数据提交到 HTTP 端点。事实上,两者都使用相同的服务:Google Location Services
If you let Chrome share your location with a site, Chrome sends information to Google Location Services to get an estimate of where you are. Chrome can then share that info with the site that wants your location.
来自Firefox Location-Aware Browsing:
By default, Firefox uses Google Location Services to determine your location by sending:
- your computer’s IP address,
- information about the nearby wireless access points, and
- a random client identifier, which is assigned by Google, that expires every 2 weeks
我们已经开始在 IE 11 上使用 Navigator.geolocation API 和 HTML 5,并开始看到从无处向 URL“https://inference.location.live.net/inferenceservice/v21/Pox/GetLocationUsingFingerprint”,我需要帮助来理解是哪个 API 触发了这个特定的调用(IE 11 / geolocation API),以及我们如何不发送带有完整地理定位功能的请求。 任何帮助将不胜感激。
无法删除 HTTP POST 调用,因为它根据可用的网络信息(IP 地址和附近的 WiFi 网络)执行实际的地理定位
Chrome 和 Firefox 也将数据提交到 HTTP 端点。事实上,两者都使用相同的服务:Google Location Services
If you let Chrome share your location with a site, Chrome sends information to Google Location Services to get an estimate of where you are. Chrome can then share that info with the site that wants your location.
来自Firefox Location-Aware Browsing:
By default, Firefox uses Google Location Services to determine your location by sending:
- your computer’s IP address,
- information about the nearby wireless access points, and
- a random client identifier, which is assigned by Google, that expires every 2 weeks