Skip to content

Files

Latest commit

79b9129 · Apr 28, 2022

History

History
25 lines (16 loc) · 992 Bytes

functions-run-remote-azure-cli.md

File metadata and controls

25 lines (16 loc) · 992 Bytes
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
10/18/2020
glenga

Invoke the function on Azure

Because your function uses an HTTP trigger, you invoke it by making an HTTP request to its URL in the browser or with a tool like curl.

Copy the complete Invoke URL shown in the output of the publish command into a browser address bar, appending the query parameter ?name=Functions. The browser should display similar output as when you ran the function locally.

The output of the function run on Azure in a browser

Run curl with the Invoke URL, appending the parameter ?name=Functions. The output of the command should be the text, "Hello Functions."

The output of the function run on Azure using curl