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: http://80001.xyz

  1. <!DOCTYPE html>
  2. <html>
  3.  <head>
  4.    <title></title>
  5.    <script src="/Scripts/jquery-latest.js"></script>
  6.    <script type="application/javascript">
  7.      var allAgent;
  8.      var agId;
  9.      var auId;
  10.      var IsMobileConfig;
  11.      var mobile_addr = "http://" + window.location.host + "/m/";
  12.      $(function () {
  13.        saveAgentId();
  14.        try {
  15.          var urlhash = window.location.hash;
  16.          if (!urlhash.match("fromapp")) {
  17.            if (
  18.              navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i) &&
  19.              "" != "1"
  20.            ) {
  21.              if (allAgent != "") {
  22.                window.location.href = "/m/#/Register?allAgent=" + allAgent;
  23.              } else if (agId != "") {
  24.                window.location.href = "/m/#/Register?at=" + agId;
  25.              } else if (auId != "") {
  26.                window.location.href = "/m/#/?au=" + auId;
  27.              } else {
  28.                window.location.href = "/m/";
  29.              }
  30.            } else {
  31.              getWebInfo();
  32.            }
  33.          }
  34.        } catch (err) {}
  35.      });
  36.      function getWebInfo() {
  37.        if (allAgent != "") {
  38.          window.location.href = "/v/#/register?allAgent=" + allAgent;
  39.        } else if (agId != "") {
  40.          window.location.href = "/v/#/register?at=" + agId;
  41.        } else if (auId != "") {
  42.          window.location.href = "/v/#/home?au=" + auId;
  43.        } else {
  44.          window.location.href = "/v/";
  45.        }
  46.      }
  47.      function saveAgentId() {
  48.        var Request = new Object();
  49.        Request = GetRequest();
  50.        allAgent = Request["allAgent"];
  51.        agId = Request["at"];
  52.        auId = Request["au"];
  53.        IsMobileConfig = Request["IsMobileConfig"];
  54.        if (
  55.          allAgent != null &&
  56.          allAgent != "null" &&
  57.          allAgent != "" &&
  58.          allAgent != "undefined"
  59.        ) {
  60.          if (window.localStorage) {
  61.            localStorage.setItem("allAgent", allAgent);
  62.          } else {
  63.          }
  64.        } else {
  65.          allAgent = "";
  66.        }
  67.        if (
  68.          agId != null &&
  69.          agId != "null" &&
  70.          agId != "" &&
  71.          agId != "undefined"
  72.        ) {
  73.          if (window.localStorage) {
  74.            localStorage.setItem("agId", agId);
  75.          } else {
  76.          }
  77.        } else {
  78.          agId = "";
  79.        }
  80.        if (
  81.          auId != null &&
  82.          auId != "null" &&
  83.          auId != "" &&
  84.          auId != "undefined"
  85.        ) {
  86.          if (window.localStorage) {
  87.            localStorage.setItem("auId", auId);
  88.          } else {
  89.          }
  90.        } else {
  91.          auId = "";
  92.        }
  93.        if (
  94.          IsMobileConfig != null &&
  95.          IsMobileConfig != "null" &&
  96.          IsMobileConfig != "" &&
  97.          IsMobileConfig != "undefined"
  98.        ) {
  99.          if (window.localStorage) {
  100.            localStorage.setItem("IsMobileConfig", IsMobileConfig);
  101.          } else {
  102.          }
  103.        } else {
  104.          IsMobileConfig = "";
  105.        }
  106.      }
  107.      function GetRequest(url) {
  108.        if (typeof url == "undefined") {
  109.          url = location.search;
  110.        } else {
  111.          url = url.substr(url.indexOf("?"), url.length - url.indexOf("?"));
  112.        }
  113.        var theRequest = new Object();
  114.        if (url.indexOf("?") != -1) {
  115.          var str = url.substr(1);
  116.          strs = str.split("&");
  117.          for (var i = 0; i < strs.length; i++) {
  118.            theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
  119.          }
  120.        }
  121.        return theRequest;
  122.      }
  123.    </script>
  124.  </head>
  125.  <body></body>
  126. </html>
  127.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda