Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a REST API using the FOSRestBundle and I'd like to be able to use the same URL for returning HTML and JSON depending on the request Accept header; i.e. if you call the URL directly from a browser (Accept : text/html etc) HTML is returned from a twig file, if you are making an AJAX request (Accept : application/JSON etc), JSON is returned using the FOSRestBundle.

Currently I can get this to work by throwing a small if statement at the top of each function to check the request accept header, if it's asking for HTML it returns the twig file, if it's asking for JSON it hits the service.

share|improve this question

2 Answers

You should rather send "Accept" header with your requests. Read content negotiation (“Accept” HTTP header) based routing in symfony2.0 and Format listener.

share|improve this answer
Thanks for the response, no problem using the accept header but I still can't work out how to route to a different controller based on the header. Currently I'm using the one controller to determine the type then either returning a twig template or hitting my service and returning JSON. It works but it means repeating the same if statement inside every single service, which isn't really ideal. – greg Jun 12 '12 at 17:20
up vote 0 down vote accepted

The request scope does not exist when run in command line mode, I had to remove request from each constructor and the problem disappeared.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.