Делаю запрос на подключение к API
$(document).ready(function () {
//$("#sendData").click(function(){
$.ajax({
type: 'POST',
contentType: 'application/json',
url: 'https://e-solution.pickpoint.ru/apitest/login',
//data: { 'Login':'apitest','Password':'apitest'},
dataType: 'json',
success: function() {
//console.log(result)
//$('div.my-div').append(result);
// $( "#success-message" ).removeClass( "hidden-block" );
}
});
//});
});
В ответ получаю
XMLHttpRequest cannot load https://e-solution.pickpoint.ru/apitest/login. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://fiddle.jshell.net' is therefore not allowed access. The response had HTTP status code 404.
Я так понимаю проблема с кроссдоменными запросами. Как изменить код, чтобы не было ошибки?