Reputation: 2201
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
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