JavaScript क्लाइंट में मैसेज पाएं

अलग-अलग मैसेज का इस्तेमाल करके मैसेज कैसे दिखेंगे पेज फ़ोरग्राउंड में है (फ़ोकस किया गया है) या बैकग्राउंड में, छिपा हुआ है अन्य टैब के पीछे या पूरी तरह से बंद हो जाता है. सभी मामलों में, पेज को onMessage कॉलबैक मैनेज करना होगा. हालांकि, बैकग्राउंड में होने वाले मामलों में, आपको onBackgroundMessage को मैनेज करना पड़ सकता है या डिसप्ले सूचना को कॉन्फ़िगर करना पड़ सकता है, ताकि उपयोगकर्ता आपके वेब ऐप्लिकेशन को फ़ोरग्राउंड में ला सके.

ऐप्लिकेशन की स्थिति सूचना डेटा दोनों
फ़ोरग्राउंड onMessage onMessage onMessage
बैकग्राउंड (सर्विस वर्कर) onBackgroundMessage (डिसप्ले की सूचना अपने-आप दिखने लगेगी) onBackgroundMessage onBackgroundMessage (डिसप्ले की सूचना अपने-आप दिखने लगेगी)

JavaScript का क्विकस्टार्ट सैंपल, मैसेज पाने के लिए ज़रूरी सभी कोड दिखाता है.

वेब ऐप्लिकेशन के फ़ोरग्राउंड में होने पर मैसेज मैनेज करना

onMessage इवेंट पाने के लिए, आपके ऐप्लिकेशन को firebase-messaging-sw.js में Firebase मैसेजिंग सर्विस वर्कर. इसके अलावा, getToken(): Promise<string> के ज़रिए SDK टूल में कोई मौजूदा सेवा वर्कर भी दिया जा सकता है.

Web

import { initializeApp } from "firebase/app";
import { getMessaging } from "firebase/messaging/sw";

// Initialize the Firebase app in the service worker by passing in
// your app's Firebase config object.
// https://firebase.google.com/docs/web/setup#config-object
const firebaseApp = initializeApp({
  apiKey: 'api-key',
  authDomain: 'project-id.firebaseapp.com',
  databaseURL: 'https://project-id.firebaseio.com',
  projectId: 'project-id',
  storageBucket: 'project-id.appspot.com',
  messagingSenderId: 'sender-id',
  appId: 'app-id',
  measurementId: 'G-measurement-id',
});

// Retrieve an instance of Firebase Messaging so that it can handle background
// messages.
const messaging = getMessaging(firebaseApp);

Web

// Give the service worker access to Firebase Messaging.
// Note that you can only use Firebase Messaging here. Other Firebase libraries
// are not available in the service worker.
importScripts('https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js');
importScripts('https://www.gstatic.com/firebasejs/8.10.1/firebase-messaging.js');

// Initialize the Firebase app in the service worker by passing in
// your app's Firebase config object.
// https://firebase.google.com/docs/web/setup#config-object
firebase.initializeApp({
  apiKey: 'api-key',
  authDomain: 'project-id.firebaseapp.com',
  databaseURL: 'https://project-id.firebaseio.com',
  projectId: 'project-id',
  storageBucket: 'project-id.appspot.com',
  messagingSenderId: 'sender-id',
  appId: 'app-id',
  measurementId: 'G-measurement-id',
});

// Retrieve an instance of Firebase Messaging so that it can handle background
// messages.
const messaging = firebase.messaging();

जब आपका ऐप्लिकेशन फ़ोरग्राउंड में हो (उपयोगकर्ता अभी आपका वेब देख रहा हो पेज), तो आपको डेटा और सूचना पाने की सुविधा मिलेगी पेलोड को सीधे पेज पर लोड कर सकते हैं.

Web

// Handle incoming messages. Called when:
// - a message is received while the app has focus
// - the user clicks on an app notification created by a service worker
//   `messaging.onBackgroundMessage` handler.
import { getMessaging, onMessage } from "firebase/messaging";

const messaging = getMessaging();
onMessage(messaging, (payload) => {
  console.log('Message received. ', payload);
  // ...
});

Web

// Handle incoming messages. Called when:
// - a message is received while the app has focus
// - the user clicks on an app notification created by a service worker
//   `messaging.onBackgroundMessage` handler.
messaging.onMessage((payload) => {
  console.log('Message received. ', payload);
  // ...
});

वेब ऐप्लिकेशन के बैकग्राउंड में होने पर भी मैसेज मैनेज करना

ऐप्लिकेशन के बैकग्राउंड में होने पर मिलने वाले सभी मैसेज, ब्राउज़र में डिसप्ले सूचना को ट्रिगर करते हैं. इस सूचना के लिए, टाइटल या क्लिक ऐक्शन जैसे विकल्प तय किए जा सकते हैं. इसके लिए, अपने ऐप्लिकेशन सर्वर से भेजे गए अनुरोध में या क्लाइंट पर सेवा वर्कर लॉजिक का इस्तेमाल करें.

भेजने के अनुरोध में सूचना के विकल्प सेट करना

ऐप्लिकेशन सर्वर से भेजे गए सूचना मैसेज के लिए, FCM JavaScript API में fcm_options.link की काम करती है. आम तौर पर, यह आपके वेब ऐप्लिकेशन के किसी पेज पर सेट होता है:

https://fcm.googleapis.com//v1/projects/<YOUR-PROJECT-ID>/messages:send
Content-Type: application/json
Authorization: bearer <YOUR-ACCESS-TOKEN>

{
  "message": {
    "token": "eEz-Q2sG8nQ:APA91bHJQRT0JJ...",
    "notification": {
      "title": "Background Message Title",
      "body": "Background message body"
    },
    "webpush": {
      "fcm_options": {
        "link": "https://dummypage.com"
      }
    }
  }
}

अगर लिंक की वैल्यू किसी ऐसे पेज पर ले जाती है जो ब्राउज़र टैब में पहले से ही खुला है, तो सूचना पर क्लिक करने से वह टैब फ़ोरग्राउंड में आ जाता है. अगर पेज पहले से नहीं खुला है, तो सूचना पर क्लिक करने से वह पेज एक नए टैब में खुलता है.

डेटा मैसेज के साथ fcm_options.link काम नहीं करता. इसलिए, आपको ऐसा करने का सुझाव दिया जाता है सभी डेटा मैसेज में सूचना पेलोड जोड़ना होगा. वैकल्पिक रूप से, आपके पास कर सकते हैं.

सूचना और डेटा मैसेज के बीच के अंतर के बारे में जानने के लिए, मैसेज के टाइप लेख पढ़ें.

सर्विस वर्कर में सूचना विकल्प सेट करना

डेटा मैसेज के लिए, सेवा वर्कर में सूचना के विकल्प सेट किए जा सकते हैं. सबसे पहले, सेवा वर्कर में अपना ऐप्लिकेशन शुरू करें:

Web

import { initializeApp } from "firebase/app";
import { getMessaging } from "firebase/messaging/sw";

// Initialize the Firebase app in the service worker by passing in
// your app's Firebase config object.
// https://firebase.google.com/docs/web/setup#config-object
const firebaseApp = initializeApp({
  apiKey: 'api-key',
  authDomain: 'project-id.firebaseapp.com',
  databaseURL: 'https://project-id.firebaseio.com',
  projectId: 'project-id',
  storageBucket: 'project-id.appspot.com',
  messagingSenderId: 'sender-id',
  appId: 'app-id',
  measurementId: 'G-measurement-id',
});

// Retrieve an instance of Firebase Messaging so that it can handle background
// messages.
const messaging = getMessaging(firebaseApp);

Web

// Give the service worker access to Firebase Messaging.
// Note that you can only use Firebase Messaging here. Other Firebase libraries
// are not available in the service worker.
importScripts('https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js');
importScripts('https://www.gstatic.com/firebasejs/8.10.1/firebase-messaging.js');

// Initialize the Firebase app in the service worker by passing in
// your app's Firebase config object.
// https://firebase.google.com/docs/web/setup#config-object
firebase.initializeApp({
  apiKey: 'api-key',
  authDomain: 'project-id.firebaseapp.com',
  databaseURL: 'https://project-id.firebaseio.com',
  projectId: 'project-id',
  storageBucket: 'project-id.appspot.com',
  messagingSenderId: 'sender-id',
  appId: 'app-id',
  measurementId: 'G-measurement-id',
});

// Retrieve an instance of Firebase Messaging so that it can handle background
// messages.
const messaging = firebase.messaging();

विकल्प सेट करने के लिए, onBackgroundMessage पर कॉल करें firebase-messaging-sw.js में. इस उदाहरण में, हमने टाइटल, मुख्य हिस्से, और आइकॉन फ़ील्ड के साथ सूचना बनाई है.

Web

import { getMessaging } from "firebase/messaging/sw";
import { onBackgroundMessage } from "firebase/messaging/sw";

const messaging = getMessaging();
onBackgroundMessage(messaging, (payload) => {
  console.log('[firebase-messaging-sw.js] Received background message ', payload);
  // Customize notification here
  const notificationTitle = 'Background Message Title';
  const notificationOptions = {
    body: 'Background Message body.',
    icon: '/firebase-logo.png'
  };

  self.registration.showNotification(notificationTitle,
    notificationOptions);
});

Web

messaging.onBackgroundMessage((payload) => {
  console.log(
    '[firebase-messaging-sw.js] Received background message ',
    payload
  );
  // Customize notification here
  const notificationTitle = 'Background Message Title';
  const notificationOptions = {
    body: 'Background Message body.',
    icon: '/firebase-logo.png'
  };

  self.registration.showNotification(notificationTitle, notificationOptions);
});

सूचनाओं के लिए सबसे सही तरीके

अगर आपको वेब के लिए पुश मैसेजिंग की जानकारी है, तो हो सकता है कि आपने अच्छी सूचना बनाने के लिए, सामान्य दिशा-निर्देश पहले ही पढ़ लिए हों. FCM for Web की मदद से सूचनाएं भेजने वाले डेवलपर के लिए, सटीक और काम की जानकारी देना सबसे ज़रूरी है. अपनी सूचनाओं को सटीक और काम का बनाए रखने के लिए, यहां कुछ खास सुझाव दिए गए हैं:

  • काम की इमेज भेजने के लिए, आइकॉन फ़ील्ड का इस्तेमाल करें. इस्तेमाल के कई उदाहरणों में, यह एक ऐसी कंपनी या ऐप्लिकेशन का लोगो होना चाहिए जिसे आपके उपयोगकर्ता तुरंत पहचान लेते हैं. इसके अलावा, चैट ऐप्लिकेशन के लिए, यह मैसेज भेजने वाले व्यक्ति की प्रोफ़ाइल इमेज हो सकती है.
  • मैसेज के बारे में सटीक जानकारी देने के लिए, टाइटल फ़ील्ड का इस्तेमाल करें. उदाहरण के लिए, "जिमी ने जवाब दिया" "नया संदेश" की तुलना में ज़्यादा सटीक जानकारी देता है. इस्तेमाल न करें अपनी कंपनी या ऐप्लिकेशन के नाम के लिए यह महत्वपूर्ण स्थान — इसके लिए आइकन का उपयोग करें मदद ली जा सकती है.
  • अपनी वेबसाइट का नाम या डोमेन दिखाने के लिए, सूचना के शीर्षक या मुख्य हिस्से का इस्तेमाल न करें. सूचनाओं में पहले से ही आपका डोमेन नेम शामिल होता है.
  • fcm_options.link जोड़ें. आम तौर पर, उपयोगकर्ता को आपके वेब ऐप्लिकेशन से लिंक करने और ब्राउज़र में फ़ोकस करने के लिए ऐसा किया जाता है. कुछ मामलों में, हो सकता है कि आपको जो जानकारी देनी है वह सूचना में ही शामिल हो. ऐसे में, आपको लिंक की ज़रूरत नहीं पड़ सकती.