FHIR Api issue facing

Hi, How can I add a new routing URL and manage the query in FHIR API without token authorization? Also, I am facing another issue below the screenshot. I don’t know what that issue. Anyone pls help me solve below the issue.

Read the error message. Somehow your encryption keys for oauth have the wrong permission setting. They need to be 600 or 660. Did you by chance change the values on these keys? They are supposed to auto-generate with the correct permission settings.

As for adding a new routing URL that bypasses token authorization, if you are doing this in a module you will want to look at the RestApiSecurityCheckEvent. You can use this event to skip security checks or add in your own security checks for the API.

Here is where the event is fired inside the HttpRestRouteHandler class:

If you are looking to modify the core files (NOT recommended) then check out

1 Like