author | ms.service | ms.topic | ms.date | ms.author |
---|---|---|---|---|
ggailey777 |
azure-functions |
include |
10/18/2020 |
glenga |
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.
Run curl
with the Invoke URL, appending the parameter ?name=Functions
. The output of the command should be the text, "Hello Functions."