FriendsOfSymfony / FOSRestBundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony
http://symfony.com/doc/master/bundles/FOSRestBundle/index.html
MIT License
2.79k stars 704 forks source link

Unable to return csv file #2303

Open pcmanprogrammeur opened 3 years ago

pcmanprogrammeur commented 3 years ago

Hi, I want to return a csv file but it doesn't work.

Here is my fost_rest.yaml :

fos_rest:
    format_listener:
        rules:
            - { path: .*/feed.csv, prefer_extension: true, fallback_format: txt, priorities: [ txt ] }

But i have the error : Format 'txt' not supported, handler must be implemented

Do you have any idea ?