ASP.Net Core SignalR

Hi Team,
I use Webhook, on my development and going well. In the new system the event stream is using SignalR. I have no idea about it. I have a sample Java doe, that I want to implement in FlowFuse. Can somebody drive me to the right direction how can I do it?

String url = "URL";
String token = "ACCESS_TOKEN";
HubConnection hubConnection = HubConnectionBuilder.create(url)
    .withAccessTokenProvider(Single.defer(() -> {
        // Your logic here.
        return Single.just(token);
    }))
    .shouldSkipNegotiate(true)
    .build();
hubConnection.on("ReceiveMessage", (message) -> {
    System.out.println("New Message: " + message);
}, String.class);
//This is a blocking call
hubConnection.start().blockingAwait();

Have you tried node-red-contrib-signalrcore (node) - Node-RED

I did try it, but the documentation is not too god and I couldn't find out how to add the Access Token to the request.

Is there any way to add authentication to this node? I'm getting the "Error: Unauthorized" error as it needs the bearer authentication.

You may have to ask a question to the author in the issues section of the repository: GitHub - scottpage/node-red-contrib-signalrcore: ASP.NET Core 3.0 SignalR In and Out nodes