I have GRPC application which I have created and deployed from visual studio to azure app service.
OS # Linux
Azure Service plan is # S1

On the App settings tab, add the following app settings to your application: Name = HTTP20_ONLY_PORT Value = 8585
when we try to run from post mane with azure app service URL #
we are not able connect GRPC.


I followed this document to create this project.
After creating the gRPC web app, it was deployed to Azure App Service. I am able to see the output in Postman.
Program.cs:
GreeterService.cs:
greet.proto:
After running the gRPC app, I copied the following HTTPS URL, as it is a secure connection.
I enabled TLS by clicking the lock symbol in Postman, as shown below.
In the Azure Web App, under Environment Variables and App Settings, I set the following value:
Name=HTTP20_ONLY_PORT Value=5243As shown below.
Ensure that your values are as follows:
I successfully deployed the app to Azure through Visual Studio.
The Azure Web App URL is a secure connection, so you need to enable TLS as shown below.
Output: