Using JWT for published rest service.

0
I am trying to use a JSON Web token in order to authenticate a webservice request that is send via a published rest service. In order to achieve this i tried using the custom authentication method. I would expect the header authorization to be present on my http request but somehow it is not available. I also tried passing the authorization header as parameter to my custom authorization mf but this also fails. My guess is that the header is stripped for security purposes. Does anyone have any experience with this and could someone point me into the right direction to get this to work?
asked
1 answers
0

Hi Pieter,

When your API is called are you retrieving the header list from the httpRequest object? Is this where the Authorization isn't showing up? I did a quick test with postman and I was able to retrieve the header that I sent through postman. 

answered