错误的PDF异常

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

“ERROR-002”错误发生在POST请求中的pdf_file参数未被检测到为pdf文件时。 确保您拥有一个类型为type=application/pdf的有效PDF文件。

推荐解决方案

提示
确保 pdf_file 参数的类型:POST "请求中的 "application/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'