From: Jeremy Benoist Date: Sun, 8 Jan 2017 09:22:31 +0000 (+0100) Subject: Merge pull request #2733 from wallabag/fix-no-matching-response X-Git-Tag: 2.2.0~3^2~8 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=a4180d0b8ef7af16e0b1a63cb45a8eeaa8b0dc52;hp=cace43dd7ba27b3e26497ada1e62718c817ea735;p=github%2Fwallabag%2Fwallabag.git Merge pull request #2733 from wallabag/fix-no-matching-response Fixed API error No matching accepted Response format could be determined --- diff --git a/app/config/config.yml b/app/config/config.yml index 591b5294..05c82e43 100644 --- a/app/config/config.yml +++ b/app/config/config.yml @@ -148,9 +148,9 @@ fos_rest: format_listener: enabled: true rules: - - { path: "^/api/entries/([0-9]+)/export.(.*)", priorities: ['epub', 'mobi', 'pdf', 'txt', 'csv'], fallback_format: false, prefer_extension: false } - - { path: "^/api", priorities: ['json', 'xml'], fallback_format: false, prefer_extension: false } - - { path: "^/annotations", priorities: ['json', 'xml'], fallback_format: false, prefer_extension: false } + - { path: "^/api/entries/([0-9]+)/export.(.*)", priorities: ['epub', 'mobi', 'pdf', 'txt', 'csv'], fallback_format: json, prefer_extension: false } + - { path: "^/api", priorities: ['json', 'xml'], fallback_format: json, prefer_extension: false } + - { path: "^/annotations", priorities: ['json', 'xml'], fallback_format: json, prefer_extension: false } # for an unknown reason, EACH REQUEST goes to FOS\RestBundle\EventListener\FormatListener # so we need to add custom rule for custom api export but also for all other routes of the application... - { path: '^/', priorities: ['text/html', '*/*'], fallback_format: html, prefer_extension: false }