webrequest 과정에서 파일 경로가 잘못됨
{
"code": "INTERNAL_SERVER_ERROR",
"message": "Failed to parse multipart servlet request"
}
파일 위치를 적절히 수정하면 요청이 정상 작동 합니다.
curl --location --request POST 'https://live-storm-apis-parse-router.sionic.im/api/v1/parsing/upload' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'file=@"/Users/dan/Downloads/1page.pdf"'
{
"result_type": "SUCCESS",
"error": null,
"success": {
"job_id": "30554500-1511-4c81-999f-e3bc7f0fa6fa",
"state": "REQUESTED",
"requested_at": "2025-08-05 16:22:31"
}
}