If I post to:
"http://my_app_name:my_pass@cloud.ocrsdk.com/processBusinessCard?language=English&exportFormat=txt"
A PNG file of a PG-rated business card, each time (even if I do https) I get back a 450 as follows:
"450 Blocked By Windows Parental Controls (RestClient::BlockedByWindowsParentalControls)"
Something tells me the server is configured wrong in the cloud.
Comments
3 comments
This is the resource I am trying:
http://ocrsdk.com/documentation/apireference/processBusinessCard/
If I change the exportformat to:
&exportFormat=xml
It seems to queue it. So, I can work around it, but somehow don't think my business card is R-rated.
With
processBusinessCard
verb the permitted values forexportFormat
parameters arevCard
,csv
andxml
.txt
is not among the permitted formats and this is what yields HTTP 450 code.HTTP 450 code is likely interpreted by
RestClient
as being parental control related. Our service only returns HTTP 450 code together with text saying that incorrect export format has been specified.The solution is not to use
exportFormat=txt
- that's not the supported value anyway.Please sign in to leave a comment.