I am trying to read full URL which comes with #params. How can i read in Play controller? I am able to read query parameters but not route directive
Action.async{ implicit request =>
val fullUrl = ??? //Read full url of request
}
I tried request.uri and request.path. both are not helpful.
response of request.uri => /callback
response of request.path => /callback
There are no #params in the response.