Reason: Credential is not supported if the CORS header 'Access-Control-Allow-Origin' is '*'What went wrong?
The CORS request was attempted with the credentials flag set, but the server is configured using the wildcard ("*"
) as the value of Access-Control-Allow-Origin
, which doesn't allow the use of credentials.
To correct this problem on the client side, ensure that the credentials flag's value is false
when issuing your CORS request.
Request.credentials
is "omit"
.XMLHttpRequest
, make sure you're not setting withCredentials
to true
.EventSource.withCredentials
is false
(it's the default value).If, instead, you need to adjust the server's behavior, you'll need to change the value of Access-Control-Allow-Origin
to grant access to the origin from which the client is loaded.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4