English 中文(简体)
如何检查我的网站使用哪些外部连接?
原标题:How to check which external connections are being used by my website

我不100%确定这是否是一个编程问题, 但我相信我是针对这个问题的正确受众。

我为一个应用程序建立了一个基于网络的前端。 现在前端将安装到客户机器( 以本地主机为主的网站 ) 。 但是, 前端将使用 Google Maps V3 和其他外部组件。 它需要互联网接入, 但客户网络非常安全 。 在此开始我的问题 。

为了确保所有事情都按计划进行,我们需要允许启动网页时的连接, 所以我需要一份我的前端在启动时使用的 URL 列表。 我主要需要谷歌地图 URL, 它们非常不同( googleis. com, gstatic. com,...)

我怎样才能得到这些 URL 列表? 是否有谷歌文件(找不到)?

我曾经考虑过使用 Firebug 并在网络标签中列出所有条目。 但是, 这个比例为大约2000项( 包括所有图像、 脚本、 CSS 样式表等, 正在从本地网站装入 ) 。

或者,是否有工具/工作可方便地找出应明确允许网站进行哪些连接,以便网站像应该做的那样运作?

最佳回答

您使用 Firebug - 网络标签的方法是好的。 铬开发者工具 - 网络视图也是非常好的。 我还没有看到一份所有被地图装入的清单, 但这是因为它取决于您如何设置您的地图。 我知道Google的工作非常艰苦, 只能根据您的选项装入您的地图所需要的内容 。

如果您只使用选中的地图控件, 谷歌将尝试将图像下载限制在显示您的地图控件所需要的范围。 当然, 如果您在 URL 上包含绘图工具的参数( < code> libraries=drawing ), 您将拥有额外的网络装入。 Google 将这些“ extra” 项目定义为图书馆, 以避免装入所有内容; 只有那些需要它们才能装入它们的项目 。

除了设置您的地图和观察已装入的东西之外,我无法想到另一个选择。

问题回答

暂无回答




相关问题
Using PHP to find part of a URL

Take this domain: http://www.?.co.uk/elderly-care-advocacy/mental-capacity-act-advance-medical-directive.html How could i use PHP to find the everything between the first and second slash regardless ...

Domains & Foreward Slash

This is rather difficult to explain so please bear with me. We will be hosting 4 websites on our server and the plan is to have each site sit under its own domain: site-a.com site-b.com sub1.site-b....

Encoding of window.location.hash

Does window.location.hash contain the encoded or decoded representation of the url part? When I open the same url (http://localhost/something/#%C3%BC where %C3%BCtranslates to ü) in Firefox 3.5 and ...

Auth-code with A-Za-z0-9 to use in an URL parameter

As part of a web application I need an auth-code to pass as a URL parameter. I am currently using (in Rails) : Digest::SHA1.hexdigest((object_id + rand(255)).to_s) Which provides long strings like : ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

采用网路服务方法

我撰写了一个网络服务,期望一个参数(所谓的“hlink”)成为一种ur。 在使用网络服务之前,URLEncode 所涉参数(“hlink”)。 然后我打电话......。

热门标签