未调用FCM onMessageReceiver

时间:2018-11-29 14:29:03

标签: android node.js firebase firebase-cloud-messaging android-service

我正在为聋哑人创建一个应用程序(他们可以在屏幕上看到颜色,但是看不到细节)。我想振动智能手表并在有人敲门铃时显示某种颜色。门铃将通过节点通过Firebase通过节点向用户发送消息,请参见以下示例:

import admin from 'firebase-admin';

// tslint:disable-next-line:no-var-requires
const serviceAccount = require('../../../firebase.json');

admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  databaseURL: 'https://example.firebaseio.com',
});

export function sendMessageToUser(
  token: string,
  payload: { data: { color: string; vibration: string; text: string } },
  priority: string,
) {
  const options = {
    priority,
    timeToLive: 60 * 60 * 24,
  };

  return new Promise((resolve, reject) => {
    admin
      .messaging()
      .sendToDevice(token, payload, options)
      .then(response => {
        console.log(response);
        resolve(response);
      })
      .catch(error => {
        console.log('error', error);
        reject(error);
      });
  });
}

并且智能手表通过以下服务接收Firebase消息:

public class HapticsFirebaseMessagingService extends FirebaseMessagingService {

    private SharedPreferences sharedPreferences;

    @Override
    public void onCreate() {
        super.onCreate();

        sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
    }

    @Override
    public void onNewToken(String token) {
        super.onNewToken(token);

        sharedPreferences.edit().putString("fb", token).apply();
    }

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        Map<String, String> data = remoteMessage.getData();
        String color = data.get("color");
        String vibration = data.get("vibration");
        String text = data.get("text");

        Intent dialogIntent = new Intent(this, AlarmActivity.class);
        dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        Bundle bundle = new Bundle();
        bundle.putString("color", color);
        bundle.putString("vibration", vibration);
        bundle.putString("text", text);
        dialogIntent.putExtras(bundle);
        startActivity(dialogIntent);
    }

    /**
     * Get the token from the shared preferences.
     */
    public static String getToken(Context context) {
        return PreferenceManager.getDefaultSharedPreferences(context).getString("fb", "empty");
    }
}

当智能手表连接到计算机时,这可以正常工作,但是当我从计算机断开智能手表时,它可以工作几分钟。但是几分钟后onMessageReceived不会被调用,也不会打开活动。为什么服务不再接收消息?以及我如何解决它,以便该服务将始终收到该消息。消息始终需要尽快传递给用户,因为它被用作聋哑人的门铃。

2 个答案:

答案 0 :(得分:0)

如果不希望延迟,则必须将其添加到有效负载priority : 'high'中。但是请记住,这会消耗更多设备的电池电量。

请访问此page以获取更多信息。

答案 1 :(得分:0)

经过一些测试,我开始使用它。我使用的npm模块似乎有问题。我使用了Firebase admin,这是我的firebase文档。除上面示例发送消息不会触发后台服务外,它工作正常。为了使其正常工作,我遵循了这些steps

要触发onmessage,当应用程序通过节点在后台运行时,我使用了以下脚本:

function sendMessageToUser(
  token: string,
  data: { color: string; vibration: string; text: string },
  priority: string,
) {
  return new Promise((resolve, reject) => {
    fetch('https://fcm.googleapis.com/fcm/send', {
      method: 'POST',
      body: JSON.stringify({
        data,
        priority,
        to: token,
      }),
      headers: {
        'Content-type': 'application/json',
        Authorization: `key=${process.env.FIREBASE_API_KEY}`,
      },
    })
      .then(async (response: any) => {
        resolve(response);
      })
      .catch((exception: any) => {
        reject(exception);
      });
  });
}