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
# Azure WebJobs Web PubSub client library for .NET - version 1.8.0
9
+
# Azure WebJobs Web PubSub client library for .NET - version 1.9.0
10
10
11
11
12
12
This extension provides functionality for receiving Web PubSub webhook calls in Azure Functions, allowing you to easily write functions that respond to any event published to Web PubSub.
You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/) and an Azure resource group with a Web PubSub resource. Follow this [step-by-step tutorial](/azure/azure-web-pubsub/howto-develop-create-instance) to create an Azure Web PubSub instance.
32
+
You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/) and an Azure resource group with a Web PubSub resource. Follow this [step-by-step tutorial](https://learn.microsoft.com/azure/azure-web-pubsub/howto-develop-create-instance) to create an Azure Web PubSub instance.
33
33
34
34
### Authenticate the client
35
35
36
-
In order to let the extension work with Azure Web PubSub service, you will need to provide a valid `ConnectionString`.
36
+
In order to let the extension work with Azure Web PubSub service, you will need to provide a valid `ConnectionString`.
37
37
38
38
You can find the **Keys** for you Azure Web PubSub service in the [Azure Portal](https://portal.azure.com/).
39
39
40
-
The `AzureWebJobsStorage` connection string is used to preserve the processing checkpoint information as required refer to [Storage considerations](/azure/azure-functions/storage-considerations#storage-account-requirements)
40
+
The `AzureWebJobsStorage` connection string is used to preserve the processing checkpoint information as required refer to [Storage considerations](https://learn.microsoft.com/azure/azure-functions/storage-considerations#storage-account-requirements)
41
41
42
42
For the local development use the `local.settings.json` file to store the connection string, `<connection-string>` can be set to `WebPubSubConnectionString` as default supported in the extension, or you can set customized names by mapping it with `Connection = <connection-string>` in function binding attributes:
43
43
@@ -49,7 +49,7 @@ For the local development use the `local.settings.json` file to store the connec
49
49
}
50
50
}
51
51
```
52
-
When deployed use the [application settings](/azure/azure-functions/functions-how-to-use-azure-function-app-settings) to set the connection string.
52
+
When deployed use the [application settings](https://learn.microsoft.com/azure/azure-functions/functions-how-to-use-azure-function-app-settings) to set the connection string.
53
53
54
54
## Key concepts
55
55
@@ -156,11 +156,11 @@ public static WebPubSubEventResponse Run(
156
156
157
157
## Troubleshooting
158
158
159
-
Please refer to [Monitor Azure Functions](/azure/azure-functions/functions-monitoring) for troubleshooting guidance.
159
+
Please refer to [Monitor Azure Functions](https://learn.microsoft.com/azure/azure-functions/functions-monitoring) for troubleshooting guidance.
160
160
161
161
## Next steps
162
162
163
-
Read the [introduction to Azure Function](/azure/azure-functions/functions-overview) or [creating an Azure Function guide](/azure/azure-functions/functions-create-first-azure-function).
163
+
Read the [introduction to Azure Function](https://learn.microsoft.com/azure/azure-functions/functions-overview) or [creating an Azure Function guide](https://learn.microsoft.com/azure/azure-functions/functions-create-first-azure-function).
164
164
165
165
## Contributing
166
166
@@ -177,15 +177,13 @@ For more information see the [Code of Conduct FAQ][coc_faq]
0 commit comments