将自定义标头参数传递给Knp SnappyBundle

我在Symfony 4中使用Knp SnappyBundle。


我在通过yaml或作为请求中的选项传递自定义标头参数(--custom-header <name> <value>)时遇到麻烦wkhtmltopdf。


这是我正在尝试的方法,似乎失败了:


knp_snappy:

  temporary_folder: "%kernel.cache_dir%/snappy"

  pdf:

    enabled: true

    binary: xvfb-run wkhtmltopdf

    options:

      - { name: 'custom-header', value: '%app_auth_header_name%' '%app_auth_header_token%'  }

我也尝试过将值作为数组传递,但这也失败了。


牧羊人nacy
浏览 191回答 1
1回答

守候你守候我

我已经部分解决了,不幸的是不是通过yaml解决了,而是在代码示例中直接解决了:&nbsp; &nbsp;public function getPdfBinary($url, Pdf $pdfService): PdfResponse&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; $url = urldecode($url);&nbsp; &nbsp; &nbsp; &nbsp; $res = new PdfResponse($pdfService->getOutput($url, ['custom-header' =>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ 'X-Authorization' => 'mytoken' ] ]),'output.pdf');&nbsp; &nbsp; &nbsp; &nbsp; return $res;yaml期望自定义标头的标量值...
打开App,查看更多内容
随时随地看视频慕课网APP