Приветствую.
Первый раз столкнулся с кроссдоменными запросами и пока не могу разобрать их. Есть задача на апи чата
livetex.github.io/messaging-api построить чат. При попытке отправить сообщение приходит ответ
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin '*******' is therefore not allowed access. The response had HTTP status code 404.
$.ajax({
url: this.urlGen(),
type: "POST",
data : this.msgGen(),
// contentType: 'application/json',
headers: {
"Access-Control-Allow-Origin": "*"
},
dataType: 'json',
success: function (response) {
workForm.switch()
console.log('Success',response);
},
error : function (response) {
console.error('Error',response);
}
});