Skip to content

Commit f766154

Browse files
Adding note for new hostname format
1 parent 01ad2ad commit f766154

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,6 +1255,11 @@ curl --request POST http://localhost:7071/api/Function1 --header "Content-Type:
12551255

12561256
When invoking an HTTP-triggered function hosted in Azure, you need to consider your networking configuration. The HTTP client must have network access to the app, so if you have [inbound networking restrictions](./functions-networking-options.md#inbound-networking-features) enabled, the client might need to be within a virtual network or specific IP ranges. Your domain configuration determines the base URL you need to use for the request.
12571257

1258+
> [!NOTE]
1259+
> Newly created function apps can generate a unique default host name that uses the naming convention `<app-name>-<random-hash>.<region>.azurewebsites.net`. An example is `myapp-ds27dh7271aah175.westus-01.azurewebsites.net`. Existing app names remain unchanged.
1260+
>
1261+
> For more information, see the [blog post about creating an app with a unique default host name](https://techcommunity.microsoft.com/blog/appsonazureblog/secure-unique-default-hostnames-ga-on-app-service-web-apps-and-public-preview-on/4303571).
1262+
12581263
Unless you selected the anonymous [authorization level](#http-auth) in your trigger definition, your request may also need to [include an access key](./function-keys-how-to.md#use-access-keys).
12591264

12601265
The following example sends an HTTP POST request with a function body, including the access key in the query string:

0 commit comments

Comments
 (0)