fluuter XMLHttpRequest error. code example
Example 1: xmlhttprequest error flutter
this worked for me, I added the below header on the lambda function
return {
statusCode: 200,
headers: {
"Access-Control-Allow-Origin": "*", // Required for CORS support to work
"Access-Control-Allow-Credentials": true, // Required for cookies, authorization headers with HTTPS
"Access-Control-Allow-Headers": "Origin,Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token,locale",
"Access-Control-Allow-Methods": "POST, OPTIONS"
},
body: JSON.stringify(item)
};
Example 2: XAMPP flutter CORS policy
// Get your local IP by ipconfig (command prompt)
// XAMPP Apache 2.4 httpd.conf:
Require local
Require ip 192.168.0
// Flutter side: add headers to async method:
var response = await http.get(Uri.parse("http://192.168.0.54/api.php"),
headers: {
"Accept": "application/json",
"Access-Control-Allow-Origin": "*"
});
// php side (api.php):
'33', 'success' => 'OK']);
?>