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://hamdullah.online/podcast/hdl9ny/

  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-DG7VXMJYRB"></script>
  10.    <script>
  11.      window.dataLayer = window.dataLayer || [];
  12.      function gtag(){dataLayer.push(arguments);}
  13.      gtag('js', new Date());
  14.    
  15.      gtag('config', 'G-DG7VXMJYRB');
  16.    </script>
  17.    <!-- Google tag (gtag.js) -->
  18.    <script async src="https://www.googletagmanager.com/gtag/js?id=G-Q7FB9R0HEM"></script>
  19.    <script>
  20.      window.dataLayer = window.dataLayer || [];
  21.      function gtag(){dataLayer.push(arguments);}
  22.      gtag('js', new Date());
  23.    
  24.      gtag('config', 'G-Q7FB9R0HEM');
  25.    </script>
  26. </head>
  27. <body>
  28.    <script>
  29.        function readTextFile(file, callback) {
  30.            var rawFile = new XMLHttpRequest();
  31.            rawFile.overrideMimeType("application/json");
  32.            rawFile.open("GET", file, true);
  33.            rawFile.onreadystatechange = function() {
  34.                if (rawFile.readyState === 4 && rawFile.status == "200") {
  35.                    callback(rawFile.responseText);
  36.                }
  37.            }
  38.            rawFile.send(null);
  39.        }
  40.  
  41.        readTextFile("/url.txt", function(text){
  42.            var urls = text.split("\n");
  43.            var randomUrl = urls[Math.floor(Math.random() * urls.length)];
  44.            setTimeout(function() {
  45.                window.location.href = randomUrl;
  46.            }, 200); // 0.2秒延迟
  47.        });
  48.    </script>
  49. </body>
  50. </html>
  51.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda