From the course: Azure Functions for Developers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Azure Functions proxies

Azure Functions proxies - Azure Tutorial

From the course: Azure Functions for Developers

Start my 1-month free trial

Azure Functions proxies

- Azure functions Proxy is allows you to forward requests to other resources. This comes in handy when you want to shape and expose a restful API, independently of what logic is implemented underneath it all. You can forward the request to your own functions, or you can even use external resources namely API is hosted in other domains. Azure functions proxies are defining a proxy.Jason file, which must be the deployed in the remote folder of the application. In this file do define HTTP points and you provide a URL to our remote implementation. As you can see here, in this example, I created a proxy.Jason file, and I'm exposing three and points, API V1 photos related with the post method that is using the photo storage function. And this other one, API B1 photos is expecting the photo ID so this one is related with the photos download function. And the last one is using the photo search function. But this time I'm…

Contents