Chat SDKs iOS v3
Chat SDKs iOS
Chat SDKs
iOS
Version 3
Sendbird Chat SDK v3 for iOS is no longer supported as a new version is released. Check out our latest Chat SDK v4

Delivery receipt

Copy link

Delivery receipt is a feature that indicates whether a message has successfully been delivered to all the intended recipients by Sendbird server. With the implementation of delivery receipt, Sendbird not only provides the timestamp of when each user has last read the messages in each channel, but also the timestamp of when each user has the message last delivered to each user in each channel.

Note: Delivery receipt is only applicable to group channels.


Benefits

Copy link

Delivery receipt provides the following benefits.

Highly in demand feature

Copy link

Most popular messaging apps, such as WhatsApp and Facebook Messenger, provide this feature. Users who have experienced them expect to see if the message they sent has been successfully delivered when using a new chat service. Delivery receipt is a feature in high demand that today’s users are accustomed to using.

Improved user experience

Copy link

Previously, a sender had no way of knowing whether their message was unread because the server is in the process of delivering or failed to deliver the message due to the unreliable internet connection, or simply because the recipients haven’t yet read the message. This feature enables users to become better-informed, thus improving the Sendbird user experience.


How it works

Copy link

Delivery receipt works in a similar way to read receipt. The server stores the timestamp of the message last delivered as delivered_ts. The timestamp is recorded per user, per channel.

SDK methods

Copy link

Each SDK provides methods to make the Chat API's mark all messages as delivered action calls. If required, each SDK also makes necessary changes to handle the new response key, delivery_receipt, for the APIs that return a group channel resource.

Delivery event

Copy link

When a user sends a message to a group channel by calling the SDK’s sendUserMessageWithParams:completionHandler method with Objective-C or sendUserMessage() method with Swift, it is considered a delivery event for Sendbird server.


Prerequisite

Copy link

To use delivery receipt, Notification Service Extension should be implemented in advance to receive the contents of your remote notifications before they are displayed to the devices of users, allowing the SDK to update the notification payload.

Requirements

Copy link

To implement Notification Service Extension to your iOS client app, create an App Group to combine your app and extension, and set it to the Chat SDK.

  • Your app is developed with iOS 10.0 or later.
  • A remote notification is implemented and configured to display an alert.
  • The payload received from the remote notification includes the mutable-content key with the value set to 1.

Note: To enable mutable-content, go to Settings > Application > Notifications > Push notification credentials on your dashboard.

Implement Notification Service Extension

Copy link
  1. In Xcode, go to File > New > Target.
  2. Select Notification Service Extension and click Next.
  3. In the Choose options for your new target window, enter the product name and choose options, then click Finish.
  4. When a pop-up appears asking you to activate the scheme, click Activate.
  5. Select the target of your app and click + Capability.
  6. Select App Groups and check if the App Groups section is in your project.
  7. Click the + button at the bottom to add a new app group.
  8. In the Add a new container window, enter the new container name which will be used in the Sendbird SDK.
  9. Go to your Apple Developer site > Account > Certificates, Identifiers & Profiles > Identifiers, and select your app.
  10. Click the checkbox to enable App Groups and click Edit.
  11. Select the created app group and click Continue.

Your app is now prepared to mark a message as delivered when receiving the remote notification.

Set App Group in your app

Copy link

In AppDelegate.m or AppDelegate.swift, set the created app group with the setAppGroup: method.

SwiftObjective-C
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

        SBDMain.initWithApplicationId("APP_ID")
        SBDMain.setAppGroup("APP_GROUP")

        return true
    }

}

Set App Group in the extension

Copy link

You can find the automatically generated files for the extension in Xcode. Choose one of the following two files and set the app group with the setAppGroup: method within the corresponding method.

  • NotificationService.m > didReceiveNotificationRequest:withContentHandler:
  • NotificationService.swift > didReceive(_:withContentHandler:)
SwiftObjective-C
import SendBirdSDK

class NotificationService: UNNotificationServiceExtension {

    var contentHandler: ((UNNotificationContent) -> Void)?
    var bestAttemptContent: UNMutableNotificationContent?

    override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
        self.contentHandler = contentHandler
        bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)

        if let bestAttemptContent = bestAttemptContent {
            // Modify the notification content here.
            bestAttemptContent.title = "\(bestAttemptContent.title) [modified]"


            SBDMain.setAppGroup("APP_GROUP")


            contentHandler(bestAttemptContent)
        }
    }


}

Mark messages as delivered

Copy link

To mark messages as delivered when a group channel member successfully receives a push notification for the message from APNs, the markAsDeliveredWithRemoteNotificationPayload:completionHandler: method should be implemented in Notification Service Extension.

SwiftObjective-C
import SendBirdSDK

class NotificationService: UNNotificationServiceExtension {

    var contentHandler: ((UNNotificationContent) -> Void)?
    var bestAttemptContent: UNMutableNotificationContent?

    override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
        self.contentHandler = contentHandler
        bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)

        if let bestAttemptContent = bestAttemptContent {
            // Modify the notification content here
            bestAttemptContent.title = "\(bestAttemptContent.title) [modified]"


            SBDMain.setAppGroup("APP_GROUP")
            SBDMain.markAsDelivered(withRemoteNotificationPayload: bestAttemptContent.userInfo) { (error) in
                guard error == nil else {
                    // Handle error.
                }


            }


            contentHandler(bestAttemptContent)
        }
    }

}

Receive an update event for delivery receipts

Copy link

When a message is delivered to group channel members who are online, it is automatically marked as delivered and the members are notified of delivery receipt through the channelDidUpdateDeliveryReceipt: method of SBDChannelDelegate. However, when the message is delivered as a push notification to group channel members who are offline, the message can be marked as delivered through the markAsDeliveredWithRemoteNotificationPayload method of SBDMain.

SwiftObjective-C
class GroupChannelChattingViewController: UIViewController, SBDChannelDelegate {
    SBDMain.add(self as SBDChannelDelegate, identifier: UNIQUE_DELEGATE_ID)

    func channelDidUpdateDeliveryReceipt(_ sender: SBDGroupChannel) {
        ...
    }
}

Retrieve number of members who haven’t received a message

Copy link

You can retrieve the number of members who haven’t received a specific message in a group channel. If zero is returned, it means that the message has been delivered to all the other members.

SwiftObjective-C
let count = channel?.getUndeliveredMemberCount(message)