The readme suggests that
"The Unpacker trait unpacks the HttpServletRequest into an OAuthRequest, which models the data needed to validate the request"
I see no trace of a code that provides the facility of transforming HttpServletRequest to OAuthRequest for further usage.
Either I have not understood the code well or am I missing something ?
I want to leverage this library for verifying the request from Jersey or Spring MVC action method.
The request from client would have been signed using private key. At my end I would use the public key of the client to verify the request. which means RSA-SHA1 algo.
Could I accomplish this using joauth or not ? if yes how ?
The readme suggests that
"The Unpacker trait unpacks the HttpServletRequest into an OAuthRequest, which models the data needed to validate the request"
I see no trace of a code that provides the facility of transforming HttpServletRequest to OAuthRequest for further usage.
Either I have not understood the code well or am I missing something ?
I want to leverage this library for verifying the request from Jersey or Spring MVC action method.
The request from client would have been signed using private key. At my end I would use the public key of the client to verify the request. which means RSA-SHA1 algo.
Could I accomplish this using joauth or not ? if yes how ?