Hello ninjas !
I'm using the Ninja Web Framework on Google AppEngine, and I would like to access the HttpServletRequest in my controllers. It used to be that way, I was using them, but when I upgraded to ninja 1.3, I noticed that all requests were null into controllers.
At this time I just took them off my controllers since information picked into requests were actually available into the context (request parameters and server host name), but now I'd like to use Google's authentication with UserService API.
But I see
here I need the request to do that.
So, firstly, is it a normal behavior that I cannot access a request by adding it in my controller's signature ?
If so, how can I access it ?
If not, any clue of why I cannot ?
Thanks :)
Best,
Tristan