NULL PDF 异常

This article was translated from English: Does it need improvement?
Translated
View the article in English

如果没有提供 PDF 文件,就会发生 "ERROR-001 "错误。这意味着在 POST 请求中所需的 pdf_file 参数为空或无效。

请注意
请务必检查参数语法、PDF 文件的文件路径或 PDF 流的有效性。

建议的决议

提示
确保在 POST 请求中将 pdf_file 参数设置为 PDF 文件。

cURL 中 pdf_file 正确语法示例:

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'