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.
- 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
1 Answer
Reset to default 7Basiclly 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
版权声明:本文标题:javascript - Follow redirect (302) in XMLHttpRequest - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743611854a2510141.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论