2

我正在使用 HMS 推送工具包来获取通知。大约 1 周前通知工作正常,但现在当我重新运行该代码时,它无法正常工作。我交叉检查了所有东西,但找不到任何东西。我正在使用的依赖项是:

implementation 'com.huawei.hms:push:5.1.1.301'

我在我的项目中也添加了 agconnect-services.json。还在清单中添加了应用程序 ID。SHA-256 密钥也可以。

接收通知的代码是:

public class HMSMessageService extends HmsMessageService {

@Override
public void onMessageReceived(@NonNull RemoteMessage remoteMessage) {
    
    }
}

我还在清单文件中添加了此服务的标签。

我也尝试过使用 HMS 工具包(android studio 中的编码助手),从那里发送通知是成功的,但我没有在应用程序上得到它。

在此处输入图像描述

要查看Logcat 日志,请单击此处

4

3 回答 3

1

可能您的设备在内部网络并且有一些安全控制,请在您的防火墙中配置推送服务器的IP地址和端口: https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/restrictions-0000001050040064 #section10881161131412

If a firewall is configured on the network of your app users, ensure that the following port numbers and IP addresses are enabled to allow traffic, so that your message delivery rate will not be affected:

Port numbers:

443
5223
IP addresses:

49.4.0.0/20
80.158.0.0/16
114.119.0.0/20
121.36.0.0/20
159.138.0.0/20
160.44.0.0/16
于 2021-11-15T03:00:04.353 回答
1

根据您提供的内容,使用以下方法接收数据消息,而不是通知消息。并且通知消息显示在设备上。

public class HMSMessageService extends HmsMessageService {

@Override
public void onMessageReceived(@NonNull RemoteMessage remoteMessage) {
    
    }
}

如果还是无法收到通知,可以提供logcat日志和token数据存储位置等信息,我们可以据此分析这个问题并尝试提供帮助。

于 2021-11-10T08:34:19.980 回答
0

这是由于一些后端问题。由于安全原因,有一些检查(IP 被阻止),因此我无法收到通知。(但奇怪的是,由于后端检查,只有 HMS 通知被阻止,而不是 Firebase 通知)

于 2021-11-10T09:59:05.943 回答