I am trying to follow Will Durand's tutorial on how to set up a good REST API with Symfony2. However I am failing in the very beginning as I get this error:
The controller must return a response (Array(welcome => Welcome to my API) given).
Something basic must be wrong with my very basic configuration. I have tried different setting for the fos_rest
config, but the configuration reference doesn't provide to be very helpful as I do not really understand what the single settings do.
My setup:
//config.yml
sensio_framework_extra:
view:
annotations: true
fos_rest: ~
//Controller
<?php
namespace Acme\Bundle\ApiBundle\Controller;
use FOS\RestBundle\Controller\Annotations as Rest;
class DefaultController
{
/**
* @Rest\View
*/
public function indexAction()
{
return array(
'welcome' => 'Welcome to my API'
);
}
}
My API should return XML oder JSON based on the accept header. There will never be an html output.