工具代码会在浏览器中处理所选文件和输入内容,不会将其提交给 TOOLGRID 的处理接口。 TOOLGRID 只衡量工具使用情况,不记录你输入的内容。
- 不上传工具输入至 TOOLGRID
- 不登录
- 复制前先检查
Loading tool…
这个工具能做什么
粘贴完整 URL,立即拆解组成部分,查看 query string 键值、重复参数和编码后的实际内容。
URL 解析器适合排查落地页链接、回调地址、分享链接和带参数的活动 URL。
它把长链接拆成可读结构,帮助你确认参数是否重复、编码是否正确、路径是否符合预期。
这个工具适合解决什么问题
Marketing teams ship long URLs studded with UTM parameters, GCLID, FBCLID, and click IDs. Paste them to verify every parameter is set correctly before launching a campaign.
Mobile app URLs like myapp://path?param=value can be hard to read in flat text. Parse them to verify the route, payload, and any base64-encoded state inside.
After a chain of 301 or 302 redirects, compare the original URL to the final URL — confirm only intended parameters survived and tracking parameters were not silently stripped.
依赖结果前需要检查什么
- Performance and maximum practical input size depend on browser memory, device speed, and the structure of the input.
- Review the generated result before replacing or publishing an original file.
如果还需要校验、转换或复用结果,可以继续打开相近的浏览器本地工具。
如何使用
01使用场景
确认 UTM、推广参数和跳转参数是否被正确编码并保留。
查看 redirect_uri、state、code 等参数是否符合预期,减少复制错误。
使用技巧
- 01先确认是否完整 URL
只有完整 URL 才能明确协议和主机;相对路径适合检查 path 和 query。
- 02注意二次编码
参数值里如果还有 URL,可能需要单独再解码一次才能看到真实目标。
常见问题
02重复参数会丢失吗?
不会。工具会保留并显示重复的 query 参数,方便排查追踪问题。
能解析 UTM 参数吗?
可以。utm_source、utm_medium、utm_campaign 等会作为普通查询参数展示。
URL 会被请求或打开吗?
不会。工具只在本地解析文本,不会访问这个 URL。

