Minh Nguyen
Minh Nguyen

Reputation: 2201

Can I setup SignalR for Azure API Apps?

I am using Azure Api App and having a need of push notifications back to client devices. Does Azure Api App support this?

Upvotes: 1

Views: 501

Answers (1)

Mohit Srivastava
Mohit Srivastava

Reputation: 451

Yes, you can host your SignalR hub in an Azure App Service API app. That said, an App Service Web app works fine as well. In fact, that is my recommendation unless you need the incremental features provided by API Apps for other scenarios. In particular, you avoid the need for the gateway that is part of API Apps.

Upvotes: 1

Related Questions