• 【开发者必看】【push kit】推送服务典型问题合集3


     【问题描述】

    无法获取 Push Token,如何解决?

    【解决方案】

    1.检查Push推送API权益是否开启。

    2.检查AGC控制台应用的对应信息是否正确。

    3.EMUI 9.0.0的Push Token返回请以onNewToken返回信息为准,确保在清单文件中配置了对应的服务类

    4.清理hms core缓存后重试(找到设置-应用-应用管理-搜索hms core,清理缓存或点击右上角三个点按钮,卸载更新至最新版后重试)

    5.卸载重装应用后再重新获取Push Token

    【问题描述2】

    导致 Push Token 变化的原因有哪些?

    【解决方案】

    Token会在包括但不限于下述场景中发生变化:

    1.应用卸载重装。

    2.应用调用注销Token方法。

    3.用户恢复出厂设置。

    4.清除应用数据,重新进入应用。

    注意事项:token是变化的

    1.应用不要固定判断Token长度,因为后续长度可变。

    2.应用的Token要定期更新(建议应用每次启动的时候都获取Token,如果发现和上次取到的不同,需要将新获取的Token上报到自己的服务器)。

    3.请勿使用Token跟踪标记用户。

    【问题描述3】

    通过端侧方法,修改桌面角标数,当角标数为0时,角标不显示

    【解决方案】

    1. private void changeBadge(Application application, int number){
    2. String packageName = application.getPackageName();
    3. Bundle bundle = new Bundle();
    4. bundle.putString("package", packageName);
    5. ComponentName launchClassComponent = application.getPackageManager().getLaunchIntentForPackage(packageName).getComponent();
    6. if (launchClassComponent == null) {
    7. return;
    8. }
    9. String launchClassName = launchClassComponent.getClassName();
    10. bundle.putString("class", launchClassName);
    11. bundle.putInt("badgenumber", number);
    12. try {
    13. Bundle result = application.getContentResolver().call(Uri.parse("content://com.huawei.android.launcher.settings/badge/"), "change_badge", null, bundle);
    14. Log.i(TAG, "clearBadge result = " + result);
    15. } catch (Exception e) {
    16. Log.i(TAG, "clearBadge error ");
    17. }
    18. }

    【问题描述4】

    通过以下代码,在端侧手动增加消息通知渠道

    【解决方案】

    1. @RequiresApi(api = Build.VERSION_CODES.O)
    2. private void addNotificationChannel(){
    3. NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    4. //创建通知渠道实例
    5. //并为它设置属性
    6. //通知渠道的ID,随便写
    7. String id = "my_channel_01";
    8. //用户可以看到的通知渠道的名字,R.string.app_name就是strings.xml文件的参数,自定义一个就好了
    9. CharSequence name = getString(R.string.app_name);
    10. //用户可看到的通知描述
    11. String description = getString(R.string.app_name);
    12. //构建NotificationChannel实例
    13. NotificationChannel notificationChannel =
    14. new NotificationChannel(id, name, NotificationManager.IMPORTANCE_HIGH);
    15. //配置通知渠道的属性
    16. notificationChannel.setDescription(description);
    17. //设置通知出现时的闪光灯
    18. notificationChannel.enableLights(true);
    19. notificationChannel.setLightColor(Color.RED);
    20. //设置通知出现时的震动
    21. notificationChannel.enableVibration(true);
    22. notificationChannel.setShowBadge(false);
    23. notificationChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 100});
    24. //在notificationManager中创建通知渠道
    25. manager.createNotificationChannel(notificationChannel);
    26. //蓝色字是个新方法,旧的被api放弃了
    27. Notification notification = new NotificationCompat.Builder(this, id)
    28. .setContentTitle("标题")
    29. .setContentText("内容666666666666666666666666666")
    30. .setWhen(System.currentTimeMillis())
    31. .setSmallIcon(R.drawable.ic_launcher_background)
    32. .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.btn_round_background))
    33. .build();
    34. manager.notify(1, notification);
    35. }

     欲了解更多更全技术文章,欢迎访问https://developer.huawei.com/consumer/cn/forum/?ha_source=zzh

  • 相关阅读:
    一百九十、Hive——Hive刷新分区MSCK REPAIR TABLE
    Day15: C++之STL容器(3/3)
    ubuntu 内核版本
    138.【JUC并发编程- 03】
    2.3 IOC之于注解管理bean
    三项最高级认证,两项创新技术、两大优秀案例,阿里云亮相云原生产业大会
    合并单元格
    uniapp 地图跳转到第三方导航软件 直接打包成apk
    QT小记:The QColor ctor taking ints is cheaper than the one taking string literals
    AWS Athena SQL基础知识
  • 原文地址:https://blog.csdn.net/weixin_44708240/article/details/125896818