Em có get API từ https://thongtindoanhnghiep.co/rest-api. Em dùng ajax để get API:
$.ajax({
type: "GET",
url: "https://thongtindoanhnghiep.co/api/city",
dataType: "json",
success: function (data) {
alert(data)
}
})
Nhưng khi check thì nó lại bị CORS:
Access to XMLHttpRequest at 'https://thongtindoanhnghiep.co/api/city' from origin 'http://localhost' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Cho em xin hỏi vấn đề này là do em get API chưa đúng, hay là do API bên kia chưa allow vậy a