Hi! I’m trying to use the free OCR API in a Microsoft Flow, but somehow I can’t get it to work. I’ve created a flow which is being triggered by a HTTP request, then a compose action, extracting the file passed in the HTTP request (triggerMultipartBody(0)[‘$content’]) and then a HTTP action (POST), calling the https://api.ocr.space/parse/image API, with the following body:
{
“apikey”:“xxxx”,
“file”: -output from previous step-
}
When I do this in Postman, everything seems to be working fine, but when I get the response from Flow, I get the following:
{
“ParsedResults”: null,
“OCRExitCode”: 99,
“IsErroredOnProcessing”: true,
“ErrorMessage”: [
“Some internal processing error occurred. Please give us some time, we are looking into this!”
],
“ErrorDetails”: “”,
“ProcessingTimeInMilliseconds”: “1”,
“SearchablePDFURL”: null
}
What am I doing wrong?