Azure SignalR binding spec
To setup Azure SignalR binding create a component of type . See this guide on how to create and apply a binding configuration.
Warning
This component supports output binding with the following operations:
create
- group: Sends the message to a specific Azure SignalR group
- user: Sends the message to a specific Azure SignalR user
Applications publishing to an Azure SignalR output binding should send a message with the following contract:
"data": {
"Arguments": [
{
"sender": "dapr",
"text": "Message from dapr output binding"
}
},
"group": "chat123"
},
"operation": "create"