The Azure Open AI Service REST API is primarily accessed over HTTPS (HTTP Secure) using the HTTPS protocol, which typically uses port 443 for secure communication. However, it's important to note that the exact port configuration can vary depending on the specific implementation and configuration of the service. It is recommended to consult the Azure Open AI Service documentation or contact Microsoft Azure Support for the most accurate and up-to-date information regarding the service's port configuration.
Is the service behind Azure Open AI Service REST API listening on port 443?
I am building an application to call a deployed model built with Azure Open AI service. More specifically, I am referring to this documentation https://learn.microsoft.com/en-us/azure/cognitive-services/openai/reference to call the Chat Completion endpoint.
If I call a deployed model with:
POST https://{your-resource-name}.openai.azure.com/openai/deployments/{deployment-id}/chat/completions?api-version={api-version}
Can I assume that the data in transit is encrypted with TLS 1.2 and the service that is listening to the request is listening on port 443 (the default HTTPS port)?
Azure OpenAI Service
2 answers
Sort by: Most helpful
-
-
Konstantinos Passadis 19,596 Reputation points MVP
2023-06-21T10:17:34.26+00:00 Hell @Wei Kung Wang !
Yes you are correct
Port is 443 and TLS 1,2 is used and recommended
I hope this helps!
Kindly mark the answer as Accepted and Upvote in case it helped!
Regards