-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
I'm encountering an issue while attempting to send a file over form data in VB6 using cHTTPRequest. I'm trying to replicate a cURL request that uploads a document to an API endpoint. The cURL command works as expected, but I'm having trouble achieving the same functionality
curl --location --request POST "https://api.mindee.net/v1/products/mindee/invoices/v4/predict" \
--header 'Authorization: Token fd1e97c821b43579a93b571d95aec10d' \
--form 'document=@"/D:/Bon de Livraison.pdf"'
Dim urlText As String
urlText = "https://api.mindee.net/v1/products/mindee/invoices/v4/predict"
With myRequest
.SetRequestHeader "Authorization", "Token <API TOKEN>"
.SetRequestHeader "Content-Type", "multipart/form-data"
.Open "POST", urlText, False
.Send "document=@" & Chr(34) & "/D:/Bon de Livraison.pdf" & Chr(34)
End WithI would appreciate any insights or suggestions on how to correctly send a file over form data in VB6 using cHTTPRequest. Thank you for your assistance!
Metadata
Metadata
Assignees
Labels
No labels