admin管理员组

文章数量:1342516

Using Firefox I am trying to download some data from Google Drive using XMLHttpRequest. In the debug console it gives me [302 Moved Temporarily] and the data i receive is empty. How can i get XMLHttpRequest to follow a redirect response? Also I am using https if it changes things.

Using Firefox I am trying to download some data from Google Drive using XMLHttpRequest. In the debug console it gives me [302 Moved Temporarily] and the data i receive is empty. How can i get XMLHttpRequest to follow a redirect response? Also I am using https if it changes things.

Share Improve this question edited May 28, 2019 at 16:10 Towkir 4,0142 gold badges26 silver badges42 bronze badges asked Sep 8, 2013 at 3:02 PureGeroPureGero 9572 gold badges8 silver badges16 bronze badges 3
  • 2 XMLHttpRequest will automatically follow the redirect. What data are you trying to retrieve? – Khanh TO Commented Sep 8, 2013 at 3:14
  • 1 stackoverflow./a/20854800/1531945 may have an answer in case it's CORS request – Konstantin Pelepelin Commented Nov 19, 2014 at 15:30
  • 2 Be careful you may need CORS for both the redirect and the page it is redirected to (with redirects, like POST's, it might not work at all, see the linked answer in the other ments). – rogerdpack Commented Jan 5, 2018 at 6:47
Add a ment  | 

1 Answer 1

Reset to default 7

Basiclly you get the Location using xhr.getResponseHeader("Location"). In this case you could just send another XMLHttpRequest to this location using the same parameter:

function ajax(url /* ,params */, callback) {
  var xmlhttp = new XMLHttpRequest();
  xmlhttp.onreadystatechange = function() {
      // return if not ready state 4
      if (this.readyState !== 4) {
        return;
      }

      // check for redirect
      if (this.status === 302 /* or may any other redirect? */) {
        var location = this.getResponseHeader("Location");
        return ajax.call(this, location /*params*/, callback);
      } 

      // return data
      var data = JSON.parse(this.responseText);
      callback(data);
  };
  xmlhttp.open("GET", url, true);
  xmlhttp.send();
}

本文标签: javascriptFollow redirect (302) in XMLHttpRequestStack Overflow