What are Push Notifications?
A push notification is a popup message similar to an SMS. Push notifications work the same as SMS text messages and mobile alerts. This provides the ability to receive messages pushed to them from a server, whether or not the web app is in the foreground, or even currently loaded, on a user agent.
Second, look for versions needed for Push Notifications
As we looking for firebase push notifications in angular 11+ so you must have installed Node.js version > 12. NPM will be updated by default. Here, I am using Node version 12.2.0 and installing the latest version of Angular CLI else you can upgrade your older version to the latest CLI by following the command – npm install -g @angular/cli@latest.
Once the project environment has been done we need a firebase account to connect the web application to the firebase cloud messaging angular.
Steps to Set Up the Firebase Account
1 ) Simply go to firebase.google.com link.
2 ) If you are new then you click on the sign-up button else you can log in to your old account credentials.
3) Once you log in click on go to the console tab which is in the top right corner.
4) Click on Create a project tab
5) When the project has been created then go to its project settings General tab and create one app for getting its credentials
6 ) Now once your app is ready then simply copy its config for future use
7) Now you also copy the server key from the Cloud Messaging tab
Create the Angular Project
Let’s create an Angular 11 project by using the following command:
ng new push-notification cd push-notification
here we are using firebase so to install the firebase library we need to enter the following command in the same project directory.
npm install firebase @angular/fire --save npm install firebase --save npm audit fix (if any vulnerabilities are found else ignore them)
Now we need to create some files so follow the instruction carefully.
- Create a JSON file. save this file in the same folder where the index.html file is present. We need to add a manifest.json file to our angular app and register it with the Angular CLI.
- Create firebase-messaging-sw.js Push messaging requires a service worker. This allows your angular app to detect new messages, even after the angular app has been closed by the user and it is needed to create this file in the same directory as the manifest.json file which is in the src/ directory.
Note:- Before importing the below script please check the latest version it’s better if you import the latest version of the CDN link, so here I importing the 8.0.2 version links.
3. Register these files in angular-cli.json
- Now we have to create the service provider here I’m going to create an angular firebase messaging service provider in the service folder which is an angular app directory. so move into the app directory and enter the below command in cmd.
mkdir service cd service ng g s messaging
5. Now once the service part is done we have to paste the below exact code into the messaging.service.ts file
Read Also:- What Is Angular Development and Various Features of Angular
6. Now Update the Environment files
7. Now you Update the Components files
First, we need to update the App Module File
then now in the HTML part, you can use pipe async and JSON like this:-
{{ message | async | json }}
And now update the App Components file like this
Finally, you did the Setup process… 😉
Run the Project
Using the ng serve -o command after compilation is complete, open can your browser, and the browser will ask for permission.
Now when you click on the allow button then it will print the token id on the browser console sometimes it may take time to load the token id but surely you will get that id in the console dialog.
Here in the above screenshot, you can see the TOKEN ID which is generated after the permission
Sending A Angular Push Notification Firebase
Now You can also hit Firebase Cloud Messaging directly using cURL like this:-
curl -X POST \
https://fcm.googleapis.com/fcm/send
Now copy the below JSON request and enter it into the body part and provide the authorization key in the header section of postman before sending any request over google apps and authorization key is nothing but the legacy serve key which we saw in prerequisite sections like this:-
Above screenshot include your legacy server key in the header section
Once all things are done we can send the request to the server https://fcm.googleapis.com/fcm/send
Now once we click on the send button on postman we will receive the popup.
That’s it
hope you get how easily we can implement angular firebase push notifications with the angular app to receive the push notification.
If you are interested in even more development-related articles and information from us here at Devstringx, then we have a lot to choose from.
Post a Comment