我已经使用 extensions.csproj 安装了 Microsoft.Azure.WebJobs.Extensions.SignalRService。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.CosmosDB" Version="3.0.1" />
<PackageReference Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version="1.0.*" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.SignalRService" Version="1.0.0" />
</ItemGroup>
</Project>
我能够使用以下 Azure 功能通过 Azure SignalR 服务发布消息。当 CosmosDB Collections 中存在任何 AddOrUpdate() 操作并在集线器中以名称“fruitUpdated”发送信号时,将触发函数。
#r "Microsoft.Azure.DocumentDB.Core"
#r "Microsoft.Azure.WebJobs.Extensions.SignalRService"
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Microsoft.Azure.Documents;
using Microsoft.Azure.WebJobs.Extensions.SignalRService;
public static void Run(IReadOnlyList<Document> input, ILogger log, ICollector<SignalRMessage> signalRMessages)
{
if (input != null && input.Count > 0)
{
log.LogInformation("Documents modified " + input.Count);
foreach (var fruit in input)
{
signalRMessages.Add(
new SignalRMessage
{
Target = "fruitUpdated",
Arguments = new [] { fruit }
});
}
}
}
但是协商功能现在似乎不起作用。它在没有任何线索的情况下抛出 500 错误代码。以下是样品,
运行.csx
#r "Newtonsoft.Json"
using System;
using System.Net;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Primitives;
using Newtonsoft.Json;
public static IActionResult Run(HttpRequest req, ILogger log, object connectionInfo)
{
return (ActionResult)new OkObjectResult(connectionInfo);
}
函数.json
{
"bindings": [
{
"authLevel": "anonymous",
"name": "req",
"type": "httpTrigger",
"direction": "in",
"methods": [
"get",
"post"
]
},
{
"type": "signalRConnectionInfo",
"name": "connectionInfo",
"hubName": "flights",
"direction": "in",
"connectionStringSetting": "AzureSignalRConnectionString"
}
]
}
我尝试了所有组合。Azure 文档在某些情况下令人厌烦!没有输入\输出模式它应该是不受欢迎的。Azure 产品团队应该认真对待
SignalR 版本彼此不兼容。如果我们在服务器和客户端中使用不同版本的 SignalR dll,它们只会被动地忽略消息而不会引发错误。
我想我需要 connectionInfo 对象的 JSON Payload。你能在这里帮助我吗?