Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 1.08 KB

functions-vs-code-run-remote.md

File metadata and controls

22 lines (16 loc) · 1.08 KB
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
10/01/2020
glenga

Run the function in Azure

  1. Back in the Azure: Functions area in the side bar, expand the new function app under your subscription. Expand Functions, right-click (Windows) or Ctrl - click (macOS) on HttpExample, and then choose Copy function URL.

    Copy the function URL for the new HTTP trigger

  2. Paste this URL for the HTTP request into your browser's address bar, add the name query string as ?name=Functions to the end of this URL, and then execute the request. The URL that calls your HTTP-triggered function should be in the following format:

    http://<FUNCTION_APP_NAME>.azurewebsites.net/api/HttpExample?name=Functions

    The following example shows the response in the browser to the remote GET request returned by the function:

    Function response in the browser