Problem
I want url segmenthere/is/a/reuqest/to/letsay/a/user to turn into one single parameter orginalRequest in Play! route
Why
To solve Same Origin Policy with json and ajax, we have decided to have a web services client running on our own server that redirect all json call to an external REST API.
Is there a way in the Play! Framework route file that I can threat what ever comes after /api/ as one single parameter?
In route:
GET /api/fromhere/is/what/iwant/as/single/parameter App.getFromOtherDomain
In App:
public void getFromOtherDomain(String orginalRequest){
WSRequest req = WS.url("https://api.otherdomain.com/" + orginalRequest);
Promise<HttpResponse> respAsync = req.getAsync();
HttpResponse resp = await(respAsync);
renderJSON(resp.getJson());
}