I am getting this error on a JS script:
Access to XMLHttpRequest at 'https://services.3xsoftware.co.uk/Search/ByPostcode/' from origin 'http://localhost' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Here's my code and I have set up the headers but still it is not working. Please let me know if I am doing anything wrong:
axios.get('https://services.3xsoftware.co.uk/Search/ByPostcode/' + postcode,
"",
{
headers: {
'Access-Control-Allow-Origin': '*',
},
responseType: "json",
}
)