I have a completed ServerBackEnd Web Api that receives requests from a frontend web application and returns a response for them.
My ServerBackend uses JWT Bearer tokens.
The purpose of my PCF is to replace the the frontend web application and send authorized requests to the backend.
I would like to avoid working in React as I am unfamiliar with the language and it would take too long to make a proof of concept.
Is there a way to authenticate those request inside the PCF without it ?
I made successful get request that did not require a bearer token using the fetch method inside PCF.