wkhtmltopdf 命令行错误:缺少 CSRF 表单字段

wkhtmltopdf commandline error :CSRF form field is missing

提问人:hotflix 提问时间:11/17/2023 更新时间:11/17/2023 访问量:14

问:

我正在使用 wkhtmltopdf 在我的应用程序中生成 PDF。我为此使用了命令行。在生成pdf时,我遇到了这个问题。

CSRF form field is missing.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Idunno.AntiCsrf.PotentialCsrfException: CSRF form field is missing.

这是我的命令代码行。我试图将csrf绑定为custom-header.但错误是相同的。请帮助我如何将这个缺失的东西添加到我的命令中。

            string command = string.Format("--custom-header _csrf {2}  --post BYPASS yes  --cookie ehrem8585 {1} --cookie  __CSRFCOOKIE {2}   --disable-smart-shrinking --orientation Landscape {0} ", pageWidthHeightSwitches.ToString(), cookieVal,csrfCookie);

C# PDF 命令行 wkhtmltopdf

评论


答: 暂无答案