0

I have a NodeJS Azure Function App that is up and running, and recently I have had to change the endpoint of one HTTP call to another URL.

This URL is verified to be working and returning expected responses. However once the previous HTTPS URL on Azure application settings was replaced with the new non-HTTPS URL, everything breaks and the function only shows as "Function started" repeatedly. Changing the environment variable back to the old HTTPS URL fixes it.

So we are suspecting that it is an issue with Azure Function App possibly restricting all outgoing HTTP calls to HTTPS only, but we couldn't find anything in the docs or on the internet.

Thanks!

silent
  • 14,494
  • 4
  • 46
  • 86
Ti Zhang
  • 17
  • 7

1 Answers1

0

No, Azure Functions do not limit the outbound calls to HTTPS-only. Are you sure your SSL certificate is valid (and signed by a recognized CA)?

silent
  • 14,494
  • 4
  • 46
  • 86