HTTP Error
302
401
500
clientId missing
solved by changing json config from installation as below
from:
  "auth-server-url": "http://localhost:9000/",
  "ssl-required": "none",
  "resource": "localsfaportal",
to:
  "url": "http://localhost:9000/",
  "ssl-required": "none",
  "clientId": "localsfaportal",
[KEYCLOAK] Usage of legacy style promise methods such as `.error()` and `.success()` has been deprecated and support will be removed in future versions. Use standard style promise methods such as `.then() and `.catch()` instead.
resolved by changing init javascript
from:
keycloak.init().success().error()
to:
keycloak.init().then().catch()
has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Solved by adding * as print screen below:
 
 
No comments:
Post a Comment