I want to generate an url like this:
/photo?tags=tag1,tag2,tag3
routes file:
GET /photo controllers.Photos.list
Using a list instead of an array should work.
If you are using Java, it works like this:
GET /photo controllers.Photos.list(tags: java.util.List[String])