After creating a service for Text Translator of Azure service, the end point when tried with the one of the keys provided returns a json object with 404 error code and Message "Resource not found"
{
"error": {
"code": "404",
"message": "Resource not found"
}
}
Postman Parameters used are:
URL: https://agro.cognitiveservices.azure.com/translate?api-version=3.0&to=ta,en
Body JSON:
{
[
"Text" : "Hello World"
]
}
With Ocp-Apim-Subscription-Key parameter in header, is that which was given as the subscription key for cognitive service of Azure when registering.
NOTE: HTTP POST Method used.
Please suggest a solution to resolve the problem and THANK YOU for this.
Screenshot Shared below as link: enter image description here