I'm trying to figure out the best way to handle this scenario.
I have an MVC back end in Azure that has a bunch of end points for my app. I want to add another end point to handle sending iOS Push Notifications to users.
I am handling storing their device tokens, so my though was to just use PushSharp and loop over each token and push the appropriate token to the user. That works great locally, but I can't seem to get PushSharp to work in Azure. I've seen this solution here:
However I am unsure what the ServiceDefinition.csdef file is and how that would be incorporated into my MVC solution.
I've started researching Azure Notification Hub but I'm not sure it can do what I need. I'm just looking for a simple solution in C# that can be hosted in Azure(ASP.NET MVC) where I can loop over a group of device tokens and push notifications.