You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [function key](functions-bindings-http-webhook-trigger.md#authorization-keys) isn't required when running locally.
94
+
> Note: If you set authLevel to `FUNCTION` or `ADMIN`, the [function key](functions-bindings-http-webhook-trigger.md#authorization-keys) isn't required when running locally.
95
+
95
96
Use `Ctrl+C` in the terminal to stop the function code.
96
97
97
98
> [!div class="nextstepaction"]
@@ -123,7 +124,7 @@ This creates the following resources in Azure, based on the values in the build.
123
124
124
125
The deployment also packages the project files and deploys them to the new function app using [zip deployment](functions-deployment-technologies.md#zip-deploy), with run-from-package mode enabled.
125
126
126
-
Because the HTTP trigger we published uses `authLevel = AuthorizationLevel.FUNCTION`, you need to get the function key to call the function endpoint over HTTP. The easiest way to get the function key is from the [Azure portal].
127
+
The authLevel for HTTP Trigger in sample proejct is `ANONYMOUS`, which will skip the authentication. However, if you uses other authLevel like `FUNCTION` or `ADMIN`, you need to get the function key to call the function endpoint over HTTP. The easiest way to get the function key is from the [Azure portal].
127
128
128
129
> [!div class="nextstepaction"]
129
130
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=functions-maven-quickstart&step=deploy)
@@ -134,9 +135,9 @@ You can get the URL required to trigger your function, with the function key, fr
134
135
135
136
1. Browse to the [Azure portal], sign in, type the _appName_ of your function app into **Search** at the top of the page, and press enter.
136
137
137
-
1. In your function app, expand**Functions (Read Only)**, choose your function, then select**</> Get function URL** at the top right.
138
+
1. In your function app, set**Functions**, choose your function, then click**</> Get Function Url** at the top right.
138
139
139
-

140
+
:::image type="content" source="./media/functions-create-first-java-gradle/get-function-url-portal.png" alt-text="Copy the function URL from the Azure portal":::
140
141
141
142
1. Choose **default (Function key)** and select **Copy**.
142
143
@@ -147,13 +148,13 @@ You can now use the copied URL to access your function.
147
148
To verify the function app running on Azure using `cURL`, replace the URL from the sample below with the URL that you copied from the portal.
0 commit comments