Hi John Whitney
The Azure Translator service has been encountering sporadic disruptions, where it temporarily goes offline and then resumes functionality. Users interacting with the service—either through the TryIt tab on the Translator service page or via web application calls—are receiving an error message that reads, “Translation failed. Please try again later.”
These intermittent failures may be attributed to a variety of underlying causes, including network connectivity issues, service-level interruptions, or misconfigured authentication settings. To address this, it is essential to begin by checking the current status of the Azure Translator service to determine whether there are any ongoing outages. Next, authentication mechanisms should be verified, ensuring that the correct headers are used—either the Ocp-Apim-Subscription-Key
or the Authorization
header with a valid Bearer token.
Additionally, network connectivity between the web application and the Translator endpoint should be assessed to rule out any latency or access issues. It is also advisable to consult the Azure AI Translator documentation for any known issues that might be affecting text translation. For example, a typical request using the Ocp-Apim-Subscription-Key
header would involve a POST call to the translation endpoint with the appropriate headers and payload. After completing these diagnostic steps, the service should be retested using the TryIt tab or a direct call from the web app to confirm that the issue has been resolved. The expected outcome is a stable and reliable translation experience without recurring failures.
Hope it Helps
Thanks