Top "Fosrestbundle" questions

A Symfony 2 plugin by FriendsOfSymfony (FOS) which provides various tools to rapidly develop RESTful API's with Symfony 2.

Uploading image file through API using Symfony2 & FOSRESTBundle

I have been coding an API for a photo sharing app like Instagram using Symfony2, FOSRESTBundle, and Vichuploader for file …

api rest symfony fosrestbundle
How to display the symfony profiler for API request made in the browser?

I'm developing a REST api with Symfony2 + FOSRest bundle. I would like to know if there is any way for …

php symfony fosrestbundle
How do routes in FOSRestBundle work?

Can someone clearly explain how routes are supposed to be configured for REST requests using FOSRest? Every tutorial seems to …

php symfony fosrestbundle
FOSRestBundle: The controller must return a response (Array()) given

I'm starting with FOSRestBundle. I have added this routing configuration: //Sermovi/Bundle/APIBundle/Resources/config/routing.yml sermovi_api_homepage: …

symfony fosrestbundle
Mixing route and query parameters using FOSRestBundle with Symfony

Using Symfony2 and FOSRestBundle I am attempting to implement API methods that have some number of fixed parameters defined in …

symfony symfony-2.1 fosrestbundle
FOS rest bundle: unable to find template

I get the exception: Unable to find template "" The other similar questions didn't help; and weirdly enough it was working …

rest symfony fosrestbundle
FOSRestBundle: routes and annotations for parameters

I'm able to get GET parameters with @QueryParam() annotation, but it looks like it works for Query String data only: /…

symfony fosrestbundle
How to specify default format for FOS\RestBundle to json?

My corresponding configuration is fos_rest: view: view_response_listener: force sensio_framework_extra: view: annotations: false and it really …

php symfony symfony-2.3 fosrestbundle
How to show null value in JSON in FOS Rest Bundle with JMS Serializer?

I had a read through this : https://github.com/schmittjoh/serializer/issues/77 but did not find any way to serialize …

php symfony fosrestbundle jmsserializerbundle
Symfony2 App with RESTful authentication, using FOSRestBundle and FOSUserBundle

I'm making REST API for my JS driven app. During login, the login form is submitted via AJAX to url /…

php symfony fosuserbundle restful-authentication fosrestbundle