You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to write my own XMLHttpRequest doesnt help as well
varxmlHttp=newXMLHttpRequest();xmlHttp.onreadystatechange=function(){if(xmlHttp.readyState==4)if(xmlHttp.status>=200&&xmlHttp.status<400)success(xmlHttp.responseText,xmlHttp.status);elseerror(xmlHttp.responseText,xmlHttp.status);};xmlHttp.open(method,theUrl,true);// true for asynchronousfor(varkeyinheaders){xmlHttp.setRequestHeader(key,headers[key]);}xmlHttp.send(data);
The text was updated successfully, but these errors were encountered:
The problem is the outgoing request is always
OPTIONS https://api.improve.ai/v1/choose
if there're custom header added (for x-api-key)ref: http://stackoverflow.com/questions/10093053/add-header-in-ajax-request-with-jquery
Trying to write my own XMLHttpRequest doesnt help as well
The text was updated successfully, but these errors were encountered: