Skip to main content

Configuring Push Notification Attributes for Messages

You can provide the RCMessagePushConfig configuration when sending messages to customize the push behavior for individual messages. For example:

  • Customize the push notification title and content
  • Customize the notification bar icon
  • Add additional information for remote push notifications
  • Bypass the recipient client's settings to forcibly display notification content in the push notification
  • Other personalized configurations supported by APNs, HarmonyOS, or Android push channels

Compared to the pushContent and pushData parameters in the message-sending input, the configurations in MessagePushConfig have higher priority. When sending a message, if RCMessagePushConfig is configured, the configurations in RCMessagePushConfig will be used first.

RCTextMessage *txtMsg = [RCTextMessage messageWithContent:@"Test text message"];

RCMessage *message = [[RCMessage alloc]
initWithType:ConversationType_PRIVATE
targetId:@"targetId"
direction:MessageDirection_SEND
content:txtMsg];

RCMessagePushConfig *pushConfig = [[RCMessagePushConfig alloc] init];
pushConfig.disablePushTitle = NO;
pushConfig.pushTitle = @"Notification Title";
pushConfig.pushContent = @"Notification Content";
pushConfig.pushData = @"Notification's pushData";
pushConfig.templateId = @"templateId";
pushConfig.iosConfig.threadId = @"iOS notification grouping ID";
pushConfig.iosConfig.apnsCollapseId = @"iOS notification override ID";
pushConfig.iosConfig.richMediaUri = @"iOS custom notification bar icon URL";
pushConfig.androidConfig.notificationId = @"Android notification ID";
pushConfig.androidConfig.channelIdMi = @"Xiaomi channel ID";
pushConfig.androidConfig.channelIdHW = @"Huawei channel ID";
pushConfig.androidConfig.categoryHW = @"Huawei Category";
pushConfig.androidConfig.channelIdOPPO = @"OPPO channel ID";
pushConfig.androidConfig.typeVivo = @"vivo classification";
pushConfig.androidConfig.categoryVivo = @"vivo Category";
pushConfig.hmosConfig.imageUrl = "HarmonyOS notification bar icon URL";
pushConfig.hmosConfig.category = "HarmonyOS push message category";
pushConfig.forceShowDetailContent = YES;
message.messagePushConfig = pushConfig;

/// Call global UIKit or IMLib message-sending method

Push Notification Attributes Explanation

RCMessagePushConfig provides the following parameters:

ParameterTypeDescription
disablePushTitleBOOLWhether to disable the notification title. This attribute is only effective for iOS platform users. Android third-party push platforms require a notification title, so this is not supported.
pushTitleNSStringPush notification title. The title specified here has the highest priority. If not set, refer to the default Push Notification Title and Push Notification Content for built-in message types in User Content Message Format.
pushContentNSStringPush notification content. The content specified here has the highest priority. If not set, refer to the default Push Notification Title and Push Notification Content for built-in message types in User Content Message Format.
pushDataNSStringAdditional information for remote push notifications. If not provided, the pushData from the sent message will be used.
forceShowDetailContentBOOLWhether to forcibly display notification details. When the target user has set not to show message details via RCPushProfile's updateShowPushContentStatus method, this parameter can be used to forcibly display the push details for this message.
templateIdNSStringPush notification template ID. Once set, the push notification will match the language content in the template based on the language environment set by the target user via the SDK RCPushProfile's setPushLauguageCode. If no match is found, the default content will be used. The template content is set in the "Console - Custom Push Copywriting" section. For specific operations, refer to Configuring and Using Custom Multilingual Push Templates.
iOSConfigRCiOSConfigiOS platform-specific configurations. See RCiOSConfig Attribute Explanation for details.
androidConfigRCAndroidConfigAndroid platform-specific configurations. See RCAndroidConfig Attribute Explanation for details.
hmosConfigRCHarmonyOSConfigHarmonyOS platform-specific configurations. See RCHarmonyOSConfig Attribute Explanation for details.
  • RCiOSConfig Attribute Explanation

    ParameterTypeDescription
    threadIdNSStringiOS platform notification bar grouping ID. Notifications with the same threadId will be grouped together (supported from iOS10).
    apnsCollapseIdNSStringiOS platform notification override ID. When apnsCollapseId is the same, new notifications will override old ones, with a maximum of 64 bytes (supported from iOS10).
    richMediaUriNSStringiOS custom notification bar icon URL. The app needs to parse richMediaUri and implement the display. Image requirements: 120 * 120px, in png or jpg format. Supported from SDK version 5.2.4.
    interruptionLevelNSStringApplicable to iOS 15 and later systems. Values can be passive, active (default), time-sensitive, or critical. For details, refer to the corresponding APNs interruption-level field. In iOS 15 and later, system features like "Scheduled Summary" and "Focus Mode" may cause important push notifications (e.g., balance changes) to be unnoticed by users. Consider setting this field. Supported from SDK version 5.6.7.
  • RCAndroidConfig Attribute Explanation

    ParameterTypeDescription
    notificationIdNSStringAndroid platform Push unique identifier. Currently supported for Xiaomi and Huawei push platforms. By default, developers do not need to set this. When a message generates a push, the message's messageUId is used as the notificationId.
    channelIdMiNSStringXiaomi channel ID. This message uses the specified push channel for Xiaomi. If the developer has integrated Xiaomi push and needs to specify channelId, they can obtain it from Android developers. channelId is created by the developer.
    miLargeIconUrlNSString(This field is no longer valid as Xiaomi has discontinued support for this feature) Xiaomi notification-type push notification image URL. Image requirements: 120 * 120px, in png or jpg format.
    Supported from version 5.1.7. Compatible with MIUI domestic (MIUI 12 and above) and international versions.
    channelIdHWNSStringHuawei channel ID. This message uses the specified push channel for Huawei. If the developer has integrated Huawei push and needs to specify channelId, they can obtain it from Android developers. channelId is created by the developer.
    hwImageUrlNSStringHuawei push notification custom notification bar icon URL. If not set, the notification bar icon will not be displayed. The icon file must be smaller than 512 KB, with a recommended size of 40dp x 40dp and rounded corners of 8dp. Icons exceeding the recommended size may be compressed or partially displayed.
    Supported from version 5.1.7.
    categoryHWNSStringHuawei push channel message self-classification identifier. Default is empty. category must be in uppercase letters, e.g., IM. The app must complete Huawei Self-Classification Rights Application or Special Permission Application as per Huawei requirements for this field to be valid. See Huawei's official documentation Huawei Message Classification Standards. This field has higher priority than the Huawei push Category configured for the App Key in the Console. Supported from SDK version 5.4.0.
    importanceHWRCImportanceHwHuawei push notification reminder level. RCImportanceHwLow indicates that the notification bar message is expected to be a silent reminder, with no sound or vibration when the message arrives. RCImportanceHwNormal indicates that the notification bar message is expected to be a strong reminder, with sound and vibration when the message arrives. The actual message reminder method on the device will be adjusted based on the categoryHW field value, or the category field value configured in the Console, or Huawei Smart Classification results. Supported from SDK version 5.1.3.
    imageUrlHonorNSStringHonor push notification custom notification bar icon URL. If not set, the notification bar icon will not be displayed. The icon file must be smaller than 512 KB, with a recommended size of 40dp x 40dp and rounded corners of 8dp. Icons exceeding the recommended size may be compressed or partially displayed. Supported from SDK version 5.6.7.
    importanceHonorRCimportanceHonorHonor push Android notification message classification, which determines the device's notification behavior. RCImportanceHonorLow indicates marketing and informational messages. RCImportanceHonorNormal (default) indicates service and communication messages. Supported from SDK version 5.6.7.
    typeVivoNSStringVIVO push service message category. Possible values: 0 (operational messages) and 1 (system messages). This parameter corresponds to the classification field in VIVO push service. See VIVO Push Message Classification Explanation.
    categoryVivoNSStringVIVO push service message sub-category. For example, IM (instant messages). This parameter corresponds to the category field in VIVO push service. For detailed category values, see VIVO Push Message Classification Explanation. If a sub-category categoryVivo is specified, typeVivo (system or operational message) must also be specified. Ensure that the sub-category content complies with VIVO's official requirements for system or operational message scenarios. The categoryVivo field has higher priority than the VIVO push Category configured for the App Key in the Console. Supported from SDK version 5.4.2.
    channelIdOPPONSStringOPPO channel ID. This message uses the specified push channel for OPPO. If the developer has integrated OPPO push and needs to specify channelId, they can obtain it from Android developers. channelId is created by the developer.
    fcmCollapseKeyNSStringFCM push notification grouping ID. Supported from SDK version 5.1.3. Note: If using this field, ensure that the FCM push configuration in the Console is set to Notification Message Mode.
    fcmImageUrlNSStringFCM push notification bar icon URL. If not set, the notification bar icon will not be displayed. Supported from SDK version 5.1.3. Note: If using this field, ensure that the FCM push configuration in the Console uses Certificate authentication and is set to Notification Message Mode.
    fcmChannelIdNSStringFCM channel ID. This message uses the specified push channel for FCM. If the developer has integrated FCM push and needs to specify channelId, they can obtain it from Android developers. channelId is created by the developer.

    Channel IDs need to be created by Android developers as follows:

    Push ChannelConfiguration Instructions
    HuaweiCreate Channel ID via Android SDK API on the app side
    XiaomiCreate Channel ID on Xiaomi Open Platform or via Xiaomi server API
    OPPOCreate Channel ID via Android SDK on the app side; register the Channel ID on the OPPO management platform to ensure consistency
    vivoCreate Channel ID via server API
  • RCHarmonyOSConfig Attribute Explanation

    ParameterTypeDescription
    imageUrlNSStringHarmonyOS notification bar icon URL. The notification bar icon supports png, jpg, jpeg, heif, gif, and bmp formats. The image's length * width must be less than 25000 pixels. If the image does not meet the requirements, the terminal cannot display the notification message.
    categoryNSStringHarmonyOS push message category. Default is empty. category must be in uppercase letters. For details, refer to the corresponding HarmonyOS category explanation.