Reputation: 187
I've been unable to find the URL to make the API call for AWS Rekognition for text detection. I found this documentation for headers and parameters to be sent, but there is no Base URL mentioned in the post.
Is it available somewhere else?
Upvotes: 0
Views: 452
Reputation: 269540
You should use an AWS SDK to access services.
Here is an example using the AWS Command-Line Interface (CLI):
aws rekognition detect-text --image 'S3Object={Bucket=my-bucket,Name=foo.jpg}'
You can make similar calls using an SDK for your favourite programming language.
Upvotes: 1