OStack程序员社区-中国程序员成长平台

标题: android - 当应用程序在后台时,React Native 处理套接字连接的事件? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:24
标题: android - 当应用程序在后台时,React Native 处理套接字连接的事件?

我正在使用 React native 和 WebSocket 开发聊天应用程序,在 Activity 模式下一切正常,但是当您按下主页按钮使应用程序处于后台模式时,WebSocket onMessage 事件函数没有被触发

好在 WebSocket 连接仍然连接,但没有触发事件功能。

我只想在后台接收消息时推送通知。

我做了一个研究,发现我需要一直运行无声背景音轨(有人说这是非法的方式)。

是否有合法的 API 可以在后台保持连接处于 Activity 状态?

后台模式下是否需要重新连接socket连接

我的代码

events = (data) =>{

    if(data[0].message){
          if(this.state.appState !== 'active'){
             console.log('check here') // not working when the app in background mode
              PushNotification.localNotification({// not working when the app in background mode
                    message: data[0].message, 
                    number: 1,
                    title: 'a new message from: '+data[0].username,

                });
            }else{
                this.setState({messages: data[0]})
            }
    }
}


socketConnect = () =>{
        AsyncStorage.getItem('token').then((token) => {
        let connection = new wamp.Connection({ url: 'wss://*******/',
            realm: 'realm',
            authmethods: ['jwt'],
        });
        connection.onopen = (session, detalis) => {

            session.subscribe('messages', this.events);
        };
        connection.open();

        })
    };



Best Answer-推荐答案


I did a research and I found that I need to run a silent background audio track at all times(some said this illegal way).

是的,这肯定会被 Apple/Google 应用审核团队拒绝。

Is there a legal API to keep a connection alive in the background?

实际上你不需要那个(见下面的解决方案)

解决方案:

我假设您有一个服务器,您可以在其中管理所有 websocket 连接并将消息路由到预期的客户端。您可以使用 firebase cloud messaging向用户发送 ios/android 推送通知,通知他/她有新消息。当然,您的服务器端和应用端都需要 FCM。对于应用程序部分,您可以使用例如 react-native-firebase .服务器有几个libraries可用的。现在有两种情况:

案例 1)

如果应用程序已经在前台,您可以通过 FCM(react-native-firebase) 显示 LocalNotification,或者您只需使用 websocket 连接来显示消息。

案例2)

您的应用在后台,您再次通过 FCM 从您的服务器发送推送通知。最大的优势是 FCM 与 Apple Push Notification Service 和 Google Cloud Messaging Service 通信(顺便说一句,谷歌很快就会使用 FCM)。这意味着您的用户会收到带有预览文本或完整消息的 native 推送通知(这取决于您)。然后用户单击通知,您的应用程序将再次打开。此时您可以重新连接到您的 websocket,然后您可以继续正常的应用程序行为。

补充说明:

  1. 这可能是唯一合法的方式
  2. 使用 APNS/GMS/FCM 比让应用始终在后台运行要节能得多

关于android - 当应用程序在后台时,React Native 处理套接字连接的事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55900662/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4