You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AyeAye doesn't prevent CORS you can just create an endpoint to send the correct headers.
/** * CORS Access Control information */publicfunctionoptionsUserEndpoint()
{
header('Access-Control-Allow-Methods: GET,POST');
header('Access-Control-Allow-Headers: origin, content-type, accept');
}
It's definitely something that can be imporved, but for the time being I'm closing this off.
See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS
The text was updated successfully, but these errors were encountered: