Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Demo 发送的通知栏消息没有声音,没有横幅 #3

Open
charzhao opened this issue Apr 6, 2021 · 5 comments
Open

Demo 发送的通知栏消息没有声音,没有横幅 #3

charzhao opened this issue Apr 6, 2021 · 5 comments

Comments

@charzhao
Copy link

charzhao commented Apr 6, 2021

我尝试了demo的通知栏消息。

  1. 没有提示声音
  2. 亮屏情况,没有通知展示
  3. 锁屏情况没有横幅

使用官网的测试页发送都正常。
请问,我们的SDK 要怎么样设置可以有这些效果。

@Mike-mei
Copy link
Contributor

Mike-mei commented Apr 7, 2021

一般级别的消息没有横幅、声音和状态栏显示,可以参考此文档是服务端对推送消息智能分类的,跟demo没关系

@charzhao
Copy link
Author

charzhao commented Apr 7, 2021

一般级别的消息没有横幅、声音和状态栏显示,可以参考此文档是服务端对推送消息智能分类的,跟demo没关系

根据文档,我需要设置消息为非常重要则可以:

  1. 在状态栏显示

  2. 锁屏通知

  3. 响铃

  4. 震动
    我修改代码如下(Importance=NotificationImportance.HIGH),任然是静默的收到消息,没有任何响铃,震动和锁屏通知,状态栏显示。:
    public async Task SendAndroidMessage()
    {
    await AGConnectMessaging.DefaultInstance.SendAsync(new Message()
    {
    Android = new AndroidConfig()
    {
    FastAppTarget = FastAppTarget.Production,
    Category = "PLAY_VOICE",
    Urgency =UrgencyPriority.HIGH,
    Notification = new AndroidNotification()
    {
    Title = "1",
    Body = "*******Hello world! from char3",
    Importance=NotificationImportance.HIGH,
    ClickAction = ClickAction.OpenApp()
    }
    },
    Token = new List() { TOKEN_ANDROID }

        });
    

问题:
1 在我们的SDK里,该如何设置消息为非常重要?
2. 按照文档,设置非常重要也不能显示横幅,请问如何设置可以显示横幅?

@Mike-mei
Copy link
Contributor

Mike-mei commented Apr 8, 2021

message.android.notification.importance字段级别与智能分类计算出的级别共同决定,两者取低。智能分类的级别是根据应用类型和发送消息的内容来计算的,没有参数可以配置。

@charzhao
Copy link
Author

charzhao commented Apr 8, 2021

message.android.notification.importance字段级别与智能分类计算出的级别共同决定,两者取低。智能分类的级别是根据应用类型和发送消息的内容来计算的,没有参数可以配置。

这样的话,是说我们的官方提供的测试页面为什么发出的消息可以有 横幅、声音和状态栏显示。 和发送源有关系吗?

@Mike-mei
Copy link
Contributor

Mike-mei commented Apr 8, 2021

请用控制台发送消息,并提供手机端带有横幅状态栏的截图

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants