URL-Parser
Analysiert URLs in Komponenten (Protokoll, Host, Pfad, Query, Hash).
Über URL Parser
Der URL-Parser dissects any URL into its constituent RFC 3986 components: scheme, authority (username, password, host, port), path, query string with individual parameter key-value pairs, and fragment identifier. It decodes all percent-encoded values so you see the actual characters rather than %XX sequences, and handles edge cases such as default port numbers, relative references, and data URIs. Web developers and security engineers use URL Parser to understand complex redirect chains, inspect authentication callback parameters, verify URL structure, and diagnose routing and encoding issues in web applications.
So verwenden Sie es
Fügen Sie any URL including absolute, protocol-relative, or data URIs into the input field and the parser immediately dissects it into its components displayed in a structured panel. Each query parameter is listed as a separate row with its decoded key and value for easy inspection. The path is broken into its individual segments. Hover over any component to see its raw encoded form alongside the decoded value. Copy individual components or the full parsed representation for use in debugging notes or documentation.
Häufige Anwendungsfälle
- Inspektion komplexer REST-API-Endpunkt-URLs mit zahlreichen Query-Parametern zur Identifizierung falsch konfigurierter, fehlender oder doppelt kodierter Werte
- Extraktion von Hostname, Pfad oder spezifischen Query-Parameterwerten aus einer URL zur Verwendung in Skripten, Tests oder Redirect-Regelkonfiguration
- Analyse von OAuth 2.0-Autorisierungs-Callback-URLs zur Extraktion von Autorisierungscodes, State-Parametern und Fehlerbeschreibungen
- Überprüfung, dass percent-encoding is applied correctly to special characters in API endpoint paths and query parameter values
- Debugging von Webhook-Delivery-URLs durch Parsing der Zielendpunkt-Struktur zur Bestätigung korrekter Protokoll-, Host-, Pfad- und Parameterkodierung