How to update device Installation's tags in Azure Mobile App Service .NET backend
It mentions that how to add Tags to Installation in this sample article https://blogs.msdn.microsoft.com/writingdata_services/2016/01/22/adding-push-notification-tags-from-an-azure-mobile-apps-client/ . But I need to update my tags in device installation not just adding new tags, and so I comment out the line of code "await hubClient.PatchInstallationAsync(Id, updates);", and then add following codes in my custom API controller in .NET backend. // Verify that the tags are a valid JSON array. var tags = JArray.Parse(message); List<string> validTags = new List<string>(); foreach (string tag in tags) { ...