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"' \