Slackbot
03/21/2023, 9:14 PMRob Elliot
03/22/2023, 11:06 AMOPTIONS
request that the browser will make as a preflight request to have the CORS headers:
{
"request": {
"method": "OPTIONS",
"urlPath": "/api/v1/project"
},
"response": {
"status": 204,
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
"Access-Control-Allow-Headers": "*"
}
}
}
Tom
03/22/2023, 11:54 AM.stubCorsEnabled(true)
in Java or
--enable-stub-cors
on the CLIRob Elliot
03/22/2023, 11:55 AMTom
03/22/2023, 11:55 AMLeon Witznick Schumacher
03/22/2023, 6:07 PM