How to implement server side web push notification in my blazor app just like facebook type notification - blazor-server-side

I am using Syncfusin toast notification in my project.
But I want to implement server side notification in my application just like Facebook notification.
I want To my application notified when any entry occurred in my Azur SQL database table .
I want to send multiple user notification and single user notification .
Please help me how can I achieved this.
Blazor server side
Database Azur SQL server

Related

How will we receive server to server notifications after adding Adjust's subscription tracking URL in our AppStore Connect Production URL field?

We are trying to use Adjust to measure our ASA campaign result. We have a subscription iOS app. For subscription tracking, they said that we need to add their subscription tracking URL in our AppStore Connect settings where we already have our own server's URL for receiving server-to-server notifications.
If we replace our URL with Adjust's URL, we will stop receiving server to server notifications on our own server.
Can someone guide how you are handling this?

How to message and not push notify to a specific user with expo react native??I want to tell user that he is verified by not notifying but update app?

I have a react native code which generates a device token and forwards it to server and the server then pushes notification to specific user. But rather than using push notification I just want to update user in the app by simple message containing data.

Notification Implementation In blazor Server Side Web application

How can I achieved notification in my Blazor Server Side Web application using Azur SQL server. Whenever Database table new entry occurred I want to show notification in my web page to all users or particular user.
Yes it is possible but requires "custom" feature implementation. It's not a huge task you need only a WebSocket channel to push messages. Since you have Server side Blazor it is already doing it with SignalR Hubs (extra functionality over WebSocket).
Here is some MS docs for Blazor + SignalR (some of the code will already in your app since it's Sever side Blazor).
hubConnection.On<string>("TableUpdate", (tableName) =>
{
//Prompt some Alert, or Notifications here...
StateHasChanged();
});
Once you set up your Hub connection you can push status updates to the clients (to all Clients.All.SendAsync() or targeting some clients Clients.User(userId)). You can use this Nuget also docs and demo available. To prompt one of the following notifications:
Alerts
Toast messages
HTML5 notification

Developer payload (external data) in App Store server notifications

We are using server-to-server purchase notifications for Google Play and App Store mobile apps. User can pay for subscription in several ways: in web broswer (via third-party billing provider), in android application (via google play) and in ios/macos application (via app store). That is why we use custom user/subscription ids - it should be equal across all platforms/devices within single account.
Now, everhing went just fine with other billing providers until we came to App Store. We configured server side notification with callback at our server as we did it before. And now it turns out, that there is no user information in App Store receipt data. And it seems to be no way to pass that data from mobile application. For example, Google Play have so called "developer payload" field for this purposes, other providers also have possibility to add external data into server notification request. Is there any analog for App Store notifications?
Another question is about notifications itself. If there is no user information in the receipt - that means that there is no way to bind user id and receipt id data. Then what is the purpose of such notfications with external server scenario?

Sending Push Notifications to Mobile app's and also to Web Application built in .Net Mvc

I am working on a MVC-4 C# web Application. The Application is connected with two mobile apps built in Ionic framework.
Currently i am in need to send push Notification's from my web application to mobile app's and also i want to show notifications on web app if any change happens in database.
I am using SQL Server 2008 as database.
I have searched alo't about this and found Signal-R and SQL Dependency as one option to monitor database and send notification to web application,but Signal-R cant send notifications to mobile app's.
I am looking for something that i can use for both purpose.
I heard a bit about Firebug ,if it could serve my purpose kindly guide me a bit about that..
Any Suggestion Regarding this would be highly appreciated.
if you want to push notification in android then used 'FCM' to push Notification.
please find follow link to push notification. Hope it will be useful for you.
Click Here