i need to add a route for following syntax
/bidding/12345?access_token=ACCESS_TOKEN
in my routes file i add like this
GET /bidding/{id} Application.bidding
i try to send request with query param /bidding/12345?access_token=ACCESS_TOKEN
like above but play response is 404 (not found), i was using play framework 1.2.5
thanks for any response to my question, and sorry for my bad English
The URL you are trying to access is not represented correctly in the routes file.
If you would like to access the URL:
The routes file entry will need to be changed to the following:
Play will use its magic to route that GET request to the following method in the Application controller: