NULL PDF 异常
This article was translated from English: Does it need improvement?
TranslatedView the article in English
"ERROR-001"错误发生在没有提供PDF文件时。 这意味着在POST
请求中所需的pdf_file
参数为空或不存在。
请注意
请务必检查参数语法、PDF 文件的文件路径或 PDF 流的有效性。
推荐解决方案
提示
确保在
POST
请求中将 pdf_file
参数设置为 PDF 文件。示例中 pdf_file
在 cURL 中的正确语法:
curl -X POST 'https://api.securedoc.com/v1/document-services/pdfs/redact-text?words_to_redact=IRON' \
-H 'accept: */*' \
-H 'Content-Type: multipart/form-data' \
-F 'pdf_file=@YOUR_PDF_DOCUMENT.pdf;type=application/pdf'
CURL
请参考最后一行以正确使用:
-F 'pdf_file=@YOUR_PDF_DOCUMENT.pdf;type=application/pdf'