0

我有一个 xamarin 应用程序试图在 Azure 函数中使用 SignalR。

根据文档,我有 2 个 azure 函数。

public static class NegotiateFunction
{
    [FunctionName("negotiate")]
    public static SignalRConnectionInfo GetSignalRInfo(
         [HttpTrigger(AuthorizationLevel.Anonymous, "post")] HttpRequest req,
         [SignalRConnectionInfo(HubName = "chat")] SignalRConnectionInfo connectionInfo)
    //, UserId = "{headers.x-ms-client-principal-id}"
    {
        return connectionInfo;
    }
}

  public static class SendMessageFunction
{
    [FunctionName("Send")]
    public static Task SendMessage(
    [HttpTrigger(AuthorizationLevel.Anonymous, "post")]object message,
[SignalR(HubName = "chat")]IAsyncCollector<SignalRMessage> signalRMessages)
    {
       // var chatObj = (ChatObject)(message);

        return signalRMessages.AddAsync(
        new SignalRMessage
        {
                // the message will only be sent to this user ID
             //   UserId = chatObj.ReciversId,
            Target = "Send",
            Arguments = new[] { message }
        });
    }
}

在我的 xamarin 客户端中,我是这样连接的。

 try
            {
                _connection = new HubConnectionBuilder()
                   .WithUrl("http://192.168.1.66:7071/api")
                    .Build();

                _connection.On<string>("Send", (message) =>
                {
                    AppendMessage(message);
                });

                await _connection.StartAsync();
            }

我在 Xamarin 应用程序页面的一个页面中使用此代码发送消息。

 try
        {
            await _connection.SendAsync("Send", MessageEntry.Text);
            MessageEntry.Text = "";
        }

连接代码正常工作,它正确地命中了“协商”功能,但是当我调用 SendAsync 时,它没有在 [FunctionName("Send")] 中遇到断点,并且什么也没有发生。它也没有给我任何例外。

本地设置是这样的

在此处输入图像描述

更新

我也试过调用。它没有用。

我应该尝试对 [FunctionName("Send")] 进行 POST 调用吗?

4

1 回答 1

0

SignalR SaaS 在 Functions 中的工作方式与在 .NET 应用程序中使用 NuGet 包略有不同。

您不能使用 SignalR library 调用函数,正如您在函数中的属性上看到的那样,它需要一个Http触发器,因此您必须对此端点执行 POST,而不是像往常一样调用它。

[HttpTrigger(AuthorizationLevel.Anonymous, "post")]

Send你仍然想像往常一样听目标。

于 2019-06-25T14:48:07.043 回答