Why the Error in jquery: Response for preflight is invalid (redirect)? I am getting 302 code status?

GUMMADI VIJAYA Kumar April 2, 2018

Here is the code and i am getting the error in chrome console as follows: Failed to load URL:Response for preflight is invalid (redirect)

$(document).ready(function(){
   var username = "username";

    var password = "password";    
$
.ajax({
type
:'GET',
url
:'URL',
dataType
:'json',
beforeSend
: function (xhr) {
xhr.setRequestHeader("Authorization", "Basic " + btoa(username + ":" + password)); },
success: function(data)
{
console.log(data);
$('#keepithere').append('<p>'+data+'</p>'); } }); });

1 answer

1 vote
jacob delddd July 19, 2018

have you found a solution?

Suggest an answer

Log in or Sign up to answer