किसी मैसेज को कई डिवाइसों पर टारगेट करने के लिए, इसका इस्तेमाल करें विषय का मैसेज. यह सुविधा से आपको ये काम करने में मदद मिलती है जिन डिवाइसों पर किसी खास विषय के लिए ऑप्ट-इन किया गया है उन पर मैसेज भेजें.
यह ट्यूटोरियल आपके ऐप्लिकेशन सर्वर से इस विषय के मैसेज भेजने पर फ़ोकस करता है. Admin SDK या REST API FCM के लिए और उन्हें वेब ऐप्लिकेशन खोलें. हम बैकग्राउंड और फ़ोरग्राउंड, दोनों के लिए मैसेज मैनेज करने के बारे में जानकारी देंगे दिखाई देता है.
SDK टूल सेट अप करें
इस सेक्शन में वे चरण शामिल हो सकते हैं जिन्हें आपने पहले ही पूरा कर लिया था. ऐसा होने पर, आपने JavaScript क्लाइंट ऐप्लिकेशन सेट अप किया हो FCM के लिए या चरणों का पालन करते हुए मैसेज पाना.
FCM SDK टूल जोड़ें और शुरू करें
यदि आपने पहले से ऐसा नहीं किया है, तो Firebase JS SDK इंस्टॉल करके, Firebase शुरू करें.
Firebase Cloud Messaging JS SDK जोड़ें और Firebase Cloud Messaging शुरू करें:
Web
import { initializeApp } from "firebase/app"; import { getMessaging } from "firebase/messaging"; // TODO: Replace the following with your app's Firebase project configuration // See: https://firebase.google.com/docs/web/learn-more#config-object const firebaseConfig = { // ... }; // Initialize Firebase const app = initializeApp(firebaseConfig); // Initialize Firebase Cloud Messaging and get a reference to the service const messaging = getMessaging(app);
Web
import firebase from "firebase/compat/app"; import "firebase/compat/messaging"; // TODO: Replace the following with your app's Firebase project configuration // See: https://firebase.google.com/docs/web/learn-more#config-object const firebaseConfig = { // ... }; // Initialize Firebase firebase.initializeApp(firebaseConfig); // Initialize Firebase Cloud Messaging and get a reference to the service const messaging = firebase.messaging();
रजिस्ट्रेशन टोकन ऐक्सेस करना
जब आपको किसी ऐप्लिकेशन इंस्टेंस के लिए मौजूदा रजिस्ट्रेशन टोकन को फिर से पाने की ज़रूरत हो, तो सबसे पहले
Notification.requestPermission()
वाले उपयोगकर्ता से सूचना की अनुमतियों का अनुरोध करें.
जब इस तरह कॉल किया जाता है, तब यह एक टोकन दिखाता है. हालांकि, ऐसा तब होता है, जब प्रॉमिस को अनुमति दी गई हो या प्रॉमिस को अस्वीकार कर दिया गया हो
अगर अस्वीकार किया जाता है, तो:
function requestPermission() { console.log('Requesting permission...'); Notification.requestPermission().then((permission) => { if (permission === 'granted') { console.log('Notification permission granted.');
FCM के लिए firebase-messaging-sw.js
फ़ाइल होनी ज़रूरी है.
अगर आपके पास पहले से firebase-messaging-sw.js
फ़ाइल नहीं है, तो एक खाली फ़ाइल बनाएं
उस नाम से साइन इन करें और टोकन फिर से पाने से पहले उसे अपने डोमेन के रूट में रखें.
क्लाइंट सेटअप करने की प्रोसेस के दौरान, बाद में फ़ाइल में काम का कॉन्टेंट जोड़ा जा सकता है.
मौजूदा टोकन फिर से पाने के लिए:
Web
import { getMessaging, getToken } from "firebase/messaging"; // Get registration token. Initially this makes a network call, once retrieved // subsequent calls to getToken will return from cache. const messaging = getMessaging(); getToken(messaging, { vapidKey: '<YOUR_PUBLIC_VAPID_KEY_HERE>' }).then((currentToken) => { if (currentToken) { // Send the token to your server and update the UI if necessary // ... } else { // Show permission request UI console.log('No registration token available. Request permission to generate one.'); // ... } }).catch((err) => { console.log('An error occurred while retrieving token. ', err); // ... });
Web
// Get registration token. Initially this makes a network call, once retrieved // subsequent calls to getToken will return from cache. messaging.getToken({ vapidKey: '<YOUR_PUBLIC_VAPID_KEY_HERE>' }).then((currentToken) => { if (currentToken) { // Send the token to your server and update the UI if necessary // ... } else { // Show permission request UI console.log('No registration token available. Request permission to generate one.'); // ... } }).catch((err) => { console.log('An error occurred while retrieving token. ', err); // ... });
टोकन पाने के बाद, उसे अपने ऐप्लिकेशन सर्वर और स्टोर पर भेजें अपने पसंदीदा तरीके से उसे अपडेट करें.
किसी विषय के लिए, क्लाइंट ऐप्लिकेशन की सदस्यता लेना
आपके पास रजिस्ट्रेशन टोकन की एक सूची, Firebase Admin SDK पर पास करने का विकल्प होता है किसी विषय से जुड़े डिवाइसों की सदस्यता लेने के लिए सदस्यता का तरीका:
Node.js
// These registration tokens come from the client FCM SDKs.
const registrationTokens = [
'YOUR_REGISTRATION_TOKEN_1',
// ...
'YOUR_REGISTRATION_TOKEN_n'
];
// Subscribe the devices corresponding to the registration tokens to the
// topic.
getMessaging().subscribeToTopic(registrationTokens, topic)
.then((response) => {
// See the MessagingTopicManagementResponse reference documentation
// for the contents of response.
console.log('Successfully subscribed to topic:', response);
})
.catch((error) => {
console.log('Error subscribing to topic:', error);
});
Java
// These registration tokens come from the client FCM SDKs.
List<String> registrationTokens = Arrays.asList(
"YOUR_REGISTRATION_TOKEN_1",
// ...
"YOUR_REGISTRATION_TOKEN_n"
);
// Subscribe the devices corresponding to the registration tokens to the
// topic.
TopicManagementResponse response = FirebaseMessaging.getInstance().subscribeToTopic(
registrationTokens, topic);
// See the TopicManagementResponse reference documentation
// for the contents of response.
System.out.println(response.getSuccessCount() + " tokens were subscribed successfully");
Python
# These registration tokens come from the client FCM SDKs.
registration_tokens = [
'YOUR_REGISTRATION_TOKEN_1',
# ...
'YOUR_REGISTRATION_TOKEN_n',
]
# Subscribe the devices corresponding to the registration tokens to the
# topic.
response = messaging.subscribe_to_topic(registration_tokens, topic)
# See the TopicManagementResponse reference documentation
# for the contents of response.
print(response.success_count, 'tokens were subscribed successfully')
शुरू करें
// These registration tokens come from the client FCM SDKs.
registrationTokens := []string{
"YOUR_REGISTRATION_TOKEN_1",
// ...
"YOUR_REGISTRATION_TOKEN_n",
}
// Subscribe the devices corresponding to the registration tokens to the
// topic.
response, err := client.SubscribeToTopic(ctx, registrationTokens, topic)
if err != nil {
log.Fatalln(err)
}
// See the TopicManagementResponse reference documentation
// for the contents of response.
fmt.Println(response.SuccessCount, "tokens were subscribed successfully")
C#
// These registration tokens come from the client FCM SDKs.
var registrationTokens = new List<string>()
{
"YOUR_REGISTRATION_TOKEN_1",
// ...
"YOUR_REGISTRATION_TOKEN_n",
};
// Subscribe the devices corresponding to the registration tokens to the
// topic
var response = await FirebaseMessaging.DefaultInstance.SubscribeToTopicAsync(
registrationTokens, topic);
// See the TopicManagementResponse reference documentation
// for the contents of response.
Console.WriteLine($"{response.SuccessCount} tokens were subscribed successfully");
Admin FCM API, आपको किसी विषय से जुड़े डिवाइसों की सदस्यता छोड़ने की भी अनुमति देता है ट्रेडमार्क किए गए रजिस्ट्रेशन टोकन पास करके, तरीका:
Node.js
// These registration tokens come from the client FCM SDKs.
const registrationTokens = [
'YOUR_REGISTRATION_TOKEN_1',
// ...
'YOUR_REGISTRATION_TOKEN_n'
];
// Unsubscribe the devices corresponding to the registration tokens from
// the topic.
getMessaging().unsubscribeFromTopic(registrationTokens, topic)
.then((response) => {
// See the MessagingTopicManagementResponse reference documentation
// for the contents of response.
console.log('Successfully unsubscribed from topic:', response);
})
.catch((error) => {
console.log('Error unsubscribing from topic:', error);
});
Java
// These registration tokens come from the client FCM SDKs.
List<String> registrationTokens = Arrays.asList(
"YOUR_REGISTRATION_TOKEN_1",
// ...
"YOUR_REGISTRATION_TOKEN_n"
);
// Unsubscribe the devices corresponding to the registration tokens from
// the topic.
TopicManagementResponse response = FirebaseMessaging.getInstance().unsubscribeFromTopic(
registrationTokens, topic);
// See the TopicManagementResponse reference documentation
// for the contents of response.
System.out.println(response.getSuccessCount() + " tokens were unsubscribed successfully");
Python
# These registration tokens come from the client FCM SDKs.
registration_tokens = [
'YOUR_REGISTRATION_TOKEN_1',
# ...
'YOUR_REGISTRATION_TOKEN_n',
]
# Unubscribe the devices corresponding to the registration tokens from the
# topic.
response = messaging.unsubscribe_from_topic(registration_tokens, topic)
# See the TopicManagementResponse reference documentation
# for the contents of response.
print(response.success_count, 'tokens were unsubscribed successfully')
शुरू करें
// These registration tokens come from the client FCM SDKs.
registrationTokens := []string{
"YOUR_REGISTRATION_TOKEN_1",
// ...
"YOUR_REGISTRATION_TOKEN_n",
}
// Unsubscribe the devices corresponding to the registration tokens from
// the topic.
response, err := client.UnsubscribeFromTopic(ctx, registrationTokens, topic)
if err != nil {
log.Fatalln(err)
}
// See the TopicManagementResponse reference documentation
// for the contents of response.
fmt.Println(response.SuccessCount, "tokens were unsubscribed successfully")
C#
// These registration tokens come from the client FCM SDKs.
var registrationTokens = new List<string>()
{
"YOUR_REGISTRATION_TOKEN_1",
// ...
"YOUR_REGISTRATION_TOKEN_n",
};
// Unsubscribe the devices corresponding to the registration tokens from the
// topic
var response = await FirebaseMessaging.DefaultInstance.UnsubscribeFromTopicAsync(
registrationTokens, topic);
// See the TopicManagementResponse reference documentation
// for the contents of response.
Console.WriteLine($"{response.SuccessCount} tokens were unsubscribed successfully");
subscribeToTopic()
और unsubscribeFromTopic()
तरीकों का इस्तेमाल करने से
ऑब्जेक्ट है, जिसमें FCM का रिस्पॉन्स शामिल है. रिटर्न टाइप एक ही है
भले ही, रजिस्ट्रेशन टोकन की संख्या कितनी भी हो
अनुरोध.
पुष्टि न होना, अमान्य टोकन या विषय वगैरह जैसी कोई गड़बड़ी होने पर इन तरीकों की वजह से कोई गड़बड़ी होती है. गड़बड़ी के कोड की पूरी सूची देखने के लिए, जिसमें गड़बड़ी का ब्यौरा भी शामिल है समस्या को हल करने में मदद मिलेगी. एडमिन FCM एपीआई से जुड़ी गड़बड़ियां.
विषय के मैसेज पाएं और मैनेज करें
अलग-अलग मैसेज का इस्तेमाल करके मैसेज कैसे दिखेंगे
भले ही, पेज फ़ोरग्राउंड में हो (फ़ोकस किया गया हो) या बैकग्राउंड में, छिपा हुआ हो
अन्य टैब के पीछे या पूरी तरह से बंद हो जाता है. सभी मामलों में पेज
onMessage
कॉलबैक, लेकिन बैकग्राउंड के मामलों में, आपको
onBackgroundMessage
या प्रदर्शन सूचना को कॉन्फ़िगर करें, ताकि उपयोगकर्ता आपकी
वेब ऐप्लिकेशन को फ़ोरग्राउंड में ले जाएं.
ऐप्लिकेशन की स्थिति | सूचना | डेटा | दोनों |
---|---|---|---|
फ़ोरग्राउंड | onMessage |
onMessage |
onMessage |
बैकग्राउंड (सर्विस वर्कर) | onBackgroundMessage (डिसप्ले की सूचना अपने-आप दिखने लगेगी) |
onBackgroundMessage |
onBackgroundMessage (डिसप्ले की सूचना अपने-आप दिखने लगेगी) |
वेब ऐप्लिकेशन के फ़ोरग्राउंड में होने पर मैसेज मैनेज करना
onMessage
इवेंट पाने के लिए, आपके ऐप्लिकेशन को
firebase-messaging-sw.js
में Firebase मैसेजिंग सर्विस वर्कर.
इसके अलावा, SDK टूल को किसी मौजूदा सर्विस वर्कर के ज़रिए भी जोड़ा जा सकता है. इसके लिए:
getToken(): Promise<string>
.
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": {
"topic": "matchday",
"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); });
मैसेज भेजने के अनुरोध बनाएं
विषय बनाने के बाद, क्लाइंट ऐप्लिकेशन के इंस्टेंस की सदस्यता लेकर क्लाइंट-साइड पर या server API, तो आप विषय. अगर आप पहली बार FCM के लिए अनुरोध भेज रहे हैं, तो इसकी गाइड देखें इसके लिए आपका सर्वर एनवायरमेंट और FCM अहम बैकग्राउंड और सेटअप जानकारी है.
बैकएंड पर, ईमेल भेजने के लॉजिक में, अपनी पसंद के विषय का नाम बताएं जैसा कि दिखाया गया है:
Node.js
// The topic name can be optionally prefixed with "/topics/".
const topic = 'highScores';
const message = {
data: {
score: '850',
time: '2:45'
},
topic: topic
};
// Send a message to devices subscribed to the provided topic.
getMessaging().send(message)
.then((response) => {
// Response is a message ID string.
console.log('Successfully sent message:', response);
})
.catch((error) => {
console.log('Error sending message:', error);
});
Java
// The topic name can be optionally prefixed with "/topics/".
String topic = "highScores";
// See documentation on defining a message payload.
Message message = Message.builder()
.putData("score", "850")
.putData("time", "2:45")
.setTopic(topic)
.build();
// Send a message to the devices subscribed to the provided topic.
String response = FirebaseMessaging.getInstance().send(message);
// Response is a message ID string.
System.out.println("Successfully sent message: " + response);
Python
# The topic name can be optionally prefixed with "/topics/".
topic = 'highScores'
# See documentation on defining a message payload.
message = messaging.Message(
data={
'score': '850',
'time': '2:45',
},
topic=topic,
)
# Send a message to the devices subscribed to the provided topic.
response = messaging.send(message)
# Response is a message ID string.
print('Successfully sent message:', response)
शुरू करें
// The topic name can be optionally prefixed with "/topics/".
topic := "highScores"
// See documentation on defining a message payload.
message := &messaging.Message{
Data: map[string]string{
"score": "850",
"time": "2:45",
},
Topic: topic,
}
// Send a message to the devices subscribed to the provided topic.
response, err := client.Send(ctx, message)
if err != nil {
log.Fatalln(err)
}
// Response is a message ID string.
fmt.Println("Successfully sent message:", response)
C#
// The topic name can be optionally prefixed with "/topics/".
var topic = "highScores";
// See documentation on defining a message payload.
var message = new Message()
{
Data = new Dictionary<string, string>()
{
{ "score", "850" },
{ "time", "2:45" },
},
Topic = topic,
};
// Send a message to the devices subscribed to the provided topic.
string response = await FirebaseMessaging.DefaultInstance.SendAsync(message);
// Response is a message ID string.
Console.WriteLine("Successfully sent message: " + response);
REST
POST https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send HTTP/1.1
Content-Type: application/json
Authorization: Bearer ya29.ElqKBGN2Ri_Uz...HnS_uNreA
{
"message":{
"topic" : "foo-bar",
"notification" : {
"body" : "This is a Firebase Cloud Messaging Topic Message!",
"title" : "FCM Message"
}
}
}
cURL निर्देश:
curl -X POST -H "Authorization: Bearer ya29.ElqKBGN2Ri_Uz...HnS_uNreA" -H "Content-Type: application/json" -d '{
"message": {
"topic" : "foo-bar",
"notification": {
"body": "This is a Firebase Cloud Messaging Topic Message!",
"title": "FCM Message"
}
}
}' https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send HTTP/1.1
विषयों के कॉम्बिनेशन को मैसेज भेजने के लिए,
एक condition तय करें, जो एक बूलियन एक्सप्रेशन है जो
टारगेट किए गए विषय. उदाहरण के लिए, नीचे दी गई शर्त इन्हें भेजेगी
वे डिवाइस जिन पर TopicA
और TopicB
या TopicC
की सदस्यता ली गई है:
"'TopicA' in topics && ('TopicB' in topics || 'TopicC' in topics)"
FCM सबसे पहले ब्रैकेट में दी गई किसी भी शर्त की जांच करता है. इसके बाद, यह आकलन करता है
बाईं से दाईं ओर का एक्सप्रेशन चुनें. ऊपर दिए गए एक्सप्रेशन में, उपयोगकर्ता ने सदस्यता ली
किसी एक विषय पर मैसेज नहीं आता. इसी तरह, कोई उपयोगकर्ता जो
TopicA
की सदस्यता लेने पर संदेश नहीं मिलता. ये कॉम्बिनेशन
इसे पाएं:
TopicA
औरTopicB
TopicA
औरTopicC
कंडिशनल एक्सप्रेशन में ज़्यादा से ज़्यादा पांच विषय शामिल किए जा सकते हैं.
किसी शर्त पर भेजने के लिए:
Node.js
// Define a condition which will send to devices which are subscribed
// to either the Google stock or the tech industry topics.
const condition = '\'stock-GOOG\' in topics || \'industry-tech\' in topics';
// See documentation on defining a message payload.
const message = {
notification: {
title: '$FooCorp up 1.43% on the day',
body: '$FooCorp gained 11.80 points to close at 835.67, up 1.43% on the day.'
},
condition: condition
};
// Send a message to devices subscribed to the combination of topics
// specified by the provided condition.
getMessaging().send(message)
.then((response) => {
// Response is a message ID string.
console.log('Successfully sent message:', response);
})
.catch((error) => {
console.log('Error sending message:', error);
});
Java
// Define a condition which will send to devices which are subscribed
// to either the Google stock or the tech industry topics.
String condition = "'stock-GOOG' in topics || 'industry-tech' in topics";
// See documentation on defining a message payload.
Message message = Message.builder()
.setNotification(Notification.builder()
.setTitle("$GOOG up 1.43% on the day")
.setBody("$GOOG gained 11.80 points to close at 835.67, up 1.43% on the day.")
.build())
.setCondition(condition)
.build();
// Send a message to devices subscribed to the combination of topics
// specified by the provided condition.
String response = FirebaseMessaging.getInstance().send(message);
// Response is a message ID string.
System.out.println("Successfully sent message: " + response);
Python
# Define a condition which will send to devices which are subscribed
# to either the Google stock or the tech industry topics.
condition = "'stock-GOOG' in topics || 'industry-tech' in topics"
# See documentation on defining a message payload.
message = messaging.Message(
notification=messaging.Notification(
title='$GOOG up 1.43% on the day',
body='$GOOG gained 11.80 points to close at 835.67, up 1.43% on the day.',
),
condition=condition,
)
# Send a message to devices subscribed to the combination of topics
# specified by the provided condition.
response = messaging.send(message)
# Response is a message ID string.
print('Successfully sent message:', response)
शुरू करें
// Define a condition which will send to devices which are subscribed
// to either the Google stock or the tech industry topics.
condition := "'stock-GOOG' in topics || 'industry-tech' in topics"
// See documentation on defining a message payload.
message := &messaging.Message{
Data: map[string]string{
"score": "850",
"time": "2:45",
},
Condition: condition,
}
// Send a message to devices subscribed to the combination of topics
// specified by the provided condition.
response, err := client.Send(ctx, message)
if err != nil {
log.Fatalln(err)
}
// Response is a message ID string.
fmt.Println("Successfully sent message:", response)
C#
// Define a condition which will send to devices which are subscribed
// to either the Google stock or the tech industry topics.
var condition = "'stock-GOOG' in topics || 'industry-tech' in topics";
// See documentation on defining a message payload.
var message = new Message()
{
Notification = new Notification()
{
Title = "$GOOG up 1.43% on the day",
Body = "$GOOG gained 11.80 points to close at 835.67, up 1.43% on the day.",
},
Condition = condition,
};
// Send a message to devices subscribed to the combination of topics
// specified by the provided condition.
string response = await FirebaseMessaging.DefaultInstance.SendAsync(message);
// Response is a message ID string.
Console.WriteLine("Successfully sent message: " + response);
REST
POST https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send HTTP/1.1
Content-Type: application/json
Authorization: Bearer ya29.ElqKBGN2Ri_Uz...HnS_uNreA
{
"message":{
"condition": "'dogs' in topics || 'cats' in topics",
"notification" : {
"body" : "This is a Firebase Cloud Messaging Topic Message!",
"title" : "FCM Message",
}
}
}
cURL निर्देश:
curl -X POST -H "Authorization: Bearer ya29.ElqKBGN2Ri_Uz...HnS_uNreA" -H "Content-Type: application/json" -d '{
"notification": {
"title": "FCM Message",
"body": "This is a Firebase Cloud Messaging Topic Message!",
},
"condition": "'dogs' in topics || 'cats' in topics"
}' https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send HTTP/1.1
नोटिफ़िकेशन पेलोड में वेब पुश प्रॉपर्टी जोड़ें
HTTP v1 API के साथ आप
JSON ऑब्जेक्ट
इसमें कोई मान्य प्रॉपर्टी शामिल है
Web Notification API.
अगर इस ऑब्जेक्ट में title
और body
फ़ील्ड मौजूद हैं, तो वे
इसके बराबर है google.firebase.fcm.v1.Notification.title
और
google.firebase.fcm.v1.Notification.body
फ़ील्ड.
एचटीटीपी पोस्ट अनुरोध
POST https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send HTTP/1.1
Content-Type: application/json
Authorization: Bearer ya29.ElqKBGN2Ri_Uz...PbJ_uNasm
{
"message": {
"token" : <token of destination app>,
"notification": {
"title": "FCM Message",
"body": "This is a message from FCM"
},
"webpush": {
"headers": {
"Urgency": "high"
},
"notification": {
"body": "This is a message from FCM to web",
"requireInteraction": "true",
"badge": "/badge-icon.png"
}
}
}
}
इस अनुरोध के बाद, टारगेट किए गए वेब क्लाइंट (इसमें, इस्तेमाल किए जा रहे ब्राउज़र भी शामिल हैं) अन्य उपयोगकर्ताओं के लिए ऐसा मैसेज जो तब तक चालू रहता है, जब तक उपयोगकर्ता उससे इंटरैक्ट नहीं करता. इसमें फ़ील्ड:
- शीर्षक: FCM मैसेज
- मुख्य हिस्सा: यह मैसेज FCM से वेब पर भेजा गया है
- ज़रूरी है: सही
- बैज: /badge-icon.png
Android और Apple के खास ऐप्लिकेशन (जिन पर वेब के बदलाव लागू नहीं होते) सामान्य प्राथमिकता वाला सूचना मैसेज, जिसमें:
- शीर्षक: FCM मैसेज
- मुख्य हिस्सा: यह मैसेज FCM से मिला है
ध्यान दें कि RequireInteraction
वर्तमान में ब्राउज़र में केवल आंशिक रूप से समर्थन किया जाता है. डेवलपर को
प्लैटफ़ॉर्म और ब्राउज़र सहायता की पुष्टि करने के लिए Web Notification API की खास बातें.
cURL
curl -X POST -H "Authorization: Bearer ya29.ElqKBGN2Ri_Uz...PbJ_uNasm" -H "Content-Type: application/json" -d '{
"message": {
"token": "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1..."
"notification": {
"title": "FCM Message",
"body": "This is a message from FCM"
},
"webpush": {
"headers": {
"Urgency": "high"
},
"notification": {
"body": "This is a message from FCM to web",
"requireInteraction": "true",
"badge": "/badge-icon.png"
}
}
}
}' "https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send"
एचटीटीपी रिस्पॉन्स
{
"name": "projects/myproject-b5ae1/messages/0:1500415314455276%31bd1c9631bd1c98"
}
ऐप्लिकेशन सर्वर भेजने के अनुरोध बनाएं देखें देखें.