PDF 错误密码异常

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

POST请求中的user_password和/或owner_password参数不正确时,会出现"ERROR-003"错误。

推荐解决方案

提示
检查用户和所有者密码。 用户密码是您输入以查看 PDF 文件的密码,而所有者密码则允许您更改 PDF 文件。

在某些情况下,它们可能是相同的密码,但正确保护的PDF应该有不同的值。

cURL中密码应用的正确示例:

curl -X POST 'https://api.securedoc.com/v1/document-services/pdfs/redact-text' \
  -H 'accept: */*' \
  -H 'Content-Type: multipart/form-data' \
  -F 'words_to_redact="IRON"' \
  -F 'user_password="1234"' \
  -F 'owner_password="5678"' \
  -F 'pdf_file=@YOUR_PDF_DOCUMENT.pdf;type=application/pdf'
CURL

请参考以下行以正确使用:

-F 'user_password="1234"' \

-F 'owner_password="5678"' \