I'm trying to access an AWS API Gateway with jQuery like:
$.ajax({
method: 'GET',
url: _config.api.invokeUrl + '/mymodel/' + id + '/attr',
headers: {
Authorization: authToken
},
data: {},
contentType: 'application/json',
success: function(result){
console.log('success:'+result);
},
error: function ajaxError(jqXHR, textStatus, errorThrown) {
console.error('Error: ', textStatus, ', Details: ', errorThrown);
console.error('Response: ', jqXHR.responseText);
}
});
However, jQuery/browser reports the CORS error:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://sd98fsf98.execute-api.us-east-1.amazonaws.com/test/mymodel/123/attr. (Reason: CORS request did not succeed).
Clearly, I can't fix it by hosting my code from sd98fsf98.execute-api.us-east-1.amazonaws.com
. I can't find any option in the Gateway API settings to disable this check. How do I bypass the CORS restriction?
You need to enable CORS in your API gateway. This sets us an options method which adds the required headers for cross-origin access.
In your API Gateway console: Actions -> Enable Cors[Select '*' for everyone] -> Deploy API
After deploying the API, the requests will first get the headers from the options method and then redirect to the GET method and will succeed.
Please find more information on enabling CORS in the AWS DOCS: https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-cors.html
Hope this helps!