यह एफसीएम का उपयोग करते हुए पहली बार है।
मैं firebase / quickstart-android से एक नमूना डाउनलोड करता हूं और मैं FCM क्विकस्टार्ट स्थापित करता हूं। लेकिन मुझे लॉग से कोई टोकन नहीं मिल सकता है यहां तक कि ऐप में लॉग टूकेन बटन भी मारा जा सकता है ।
फिर मैं फायरबेस कंसोल के साथ एक संदेश भेजने की कोशिश करता हूं और अपने ऐप पैकेज नाम को लक्षित करने के लिए सेट करता हूं। मुझे आने वाले संदेश मिले।
मैं जानना चाहता हूं कि FCM का उपयोग किया जा सकता है? GCM सब कुछ ठीक है।
समाधान:
क्योंकि मैं Android डेवलपर नहीं हूं, सिर्फ बैकएंड डेवलपर हूं। इसलिए मुझे इसे हल करने में कुछ समय लगता है। मेरी राय में, नमूना ऐप में कुछ कीड़े हैं।
कोड:
RegistrationIntentService.java
public class RegistrationIntentService extends IntentService {
private static final String TAG = "RegIntentService";
public RegistrationIntentService() {
super(TAG);
}
@Override
protected void onHandleIntent(Intent intent) {
String token = FirebaseInstanceId.getInstance().getToken();
Log.i(TAG, "FCM Registration Token: " + token);
}
}
MyFirebaseInstanceIDService.java
public class MyFirebaseInstanceIDService extends FirebaseInstanceIdService {
private static final String TAG = "MyFirebaseIIDService";
/**
* Called if InstanceID token is updated. This may occur if the security of
* the previous token had been compromised. Note that this is called when the InstanceID token
* is initially generated so this is where you would retrieve the token.
*/
// [START refresh_token]
@Override
public void onTokenRefresh() {
// Get updated InstanceID token.
// String refreshedToken = FirebaseInstanceId.getInstance().getToken();
// Log.d(TAG, "Refreshed token: " + refreshedToken);
//
// // TODO: Implement this method to send any registration to your app's servers.
// sendRegistrationToServer(refreshedToken);
//
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
}
// [END refresh_token]
/**
* Persist token to third-party servers.
* <p>
* Modify this method to associate the user's FCM InstanceID token with any server-side account
* maintained by your application.
*
* @param token The new token.
*/
private void sendRegistrationToServer(String token) {
// Add custom implementation, as needed.
}
}
इसे MainActivity.java में जोड़ें।
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
ऊपर get करने के बाद आपको Logcat में टोकन मिलता है। लेकिन आखिरकार, मुझे इसे प्राप्त करने का एक सुविधाजनक तरीका मिल गया है। नमूना एप्लिकेशन को स्थापित करने के लिए बस डिबग मोड का उपयोग करें और जब आप पहली बार इसे स्थापित करने के लिए टोकन प्राप्त कर सकते हैं।
लेकिन मुझे नहीं पता कि जब मैं इसे स्थापित करता हूं तो यह लॉग को प्रिंट क्यों नहीं कर सकता। शायद मोबाइल सिस्टम से संबंधित हो।
और फिर मुझे अधिसूचना क्यों नहीं मिल रही है। FirebaseMessagingService.onMessageReceived ने SendNotification को कॉल नहीं किया