Create your first Azure Function
Test your function in Azure
-
Copy the base URL of the function app from the Publish profile page. Replace the
localhost:port
portion of the URL you used when testing the function locally with the new base URL. As before, make sure to append the query string?name=<yourname>
to this URL and execute the request.The URL that calls your HTTP triggered function looks like this:
http://<functionappname>.azurewebsites.net/api/<functionname>?name=<yourname>
-
Paste this new URL for the HTTP request into your browser’s address bar. The following shows the response in the browser to the remote GET request returned by the function:
I ran into an issue The function works