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

Display Open Graph tags in a message

Copy link

The Chat SDK supports the URL link preview for both open channels and group channels when a message text contains the URL of a web page. This feature is turned on by default for Sendbird applications. If this isn't available for your Sendbird application, see this page and contact us on the Sendbird Dashboard to enable the feature.


OGMetaData

Copy link

If a BaseMessage object includes a valid URL of a website, the object can contain OGMetaData, a class that holds OG metadata information such as title, URL, description, and default image of an OG object.

Note: Some websites don’t provide the OG metadata. In that case, even though the OG protocol states them as requirements, all of the four properties can be null.

List of properties

Copy link
Property nameDescription

title

The title of the OG object as it should appear within the graph. The value can be null.

url

The canonical URL of the object that can be used as its permanent ID in the graph. The value can be set to null.

desc

The description of the object. The value can be set to null.

defaultImage

An OGImage instance that contains information about the image that the Open Graph points to. The OGImage also holds its own properties such as type, URL, and size. However, the value can be set to null.


OGImage

Copy link

The OGImage instance holds image-related data for an OGMetaData can also have six optional structured properties of URL, secure URL, type, width, height, and alt. Except for width and height, other fields such as URL, secure URL, type, and alt can be set to null. If the target website doesn’t provide width and height data, the value of those two fields are set to 0.

List of properties

Copy link
Property nameDescription

url

The URL of an image object within the Open Graph. The value can be set to null.

secureUrl

An alternative URL to use if the webpage requires HTTPS. The value can be set to null.

type

A media type or MIME type of this image. The value can be set to null.

width

The number of pixels horizontal. When the value is unavailable, this method returns 0.

height

The number of pixels vertical. When the value is unavailable, this method returns 0.

alt

The description of what is in the image, not a caption of the image. The alt attribute is designed to provide a fuller context of the object and help users better understand it when they can’t load or see the image. The value can be set to null.


How it works

Copy link

If a user sends a message with a web page URL and the linked web page possesses Open Graph (OG) tags, or OG metadata, the Sendbird server parses the message content, extracts the URL in the message, gets the OG metadata from it, and creates an OG metadata object for the message. Then message recipients will get the parsed message with its OG metadata through the onMessage() method in the channel event handler of the SDK. On the other hand, the message sender will do the same through onMessageUpdated().

Displaying an OG metadata object is available for two subtypes of BaseMessage: UserMessage and AdminMessage. If the content of either a UserMessage or AdminMessage object includes a web page URL containing OG metadata, the BaseMessage.ogMetaData property returns OGMetaData and OGImage objects.

If the Sendbird server doesn’t have cache memory of the OG metadata of the given URL, ogMetaData can be null due to the time it takes to fetch the OG metadata from a remote web page. In the meantime, the message text containing the URL will be delivered first to message recipients’ client app through the onMessageUpdated() method. When the server completes fetching, the onMessageUpdated() method will be called and the message with its OGMetaData object will be delivered to the recipients’ client app. However, if the Sendbird server has already cached the OG metadata of the URL, BaseMessage.ogMetaData returns the message and its OGMetaData object instantly and the onMessageUpdated() method won’t be called.

// Send a user message containing the URL of a web page.
final params = UserMessageParams(message: 'sendbird.com');

try {
    final preMessage = await channel.sendUserMessage(params);
} catch (e) {
    // Handle error.
}

// Receive a user message containing OG metadata of the web page through a channel event handler.
class MyClass with ChannelEventHandler {
    // Add this class through sendbird.addChannelEventHandler(UNIQUE_HANDLER_ID, this).
    // Or remove it through sendbird.removeChannelEventHandler(UNIQUE_HANDLER_ID) when it's no longer needed.
    @override
    void onMessageReceived(BaseChannel channel, BaseMessage message) {
        if (message.ogMetaData != null) {
            // You can create and customize the URL link preview by using the Open Graph metadata of the message.
        } else {
            // If the message.ogMetaData is null, wait until the onMessageUpdated() method receives a callback from the Sendbird server.
        }
    }

    @override
    void onMessageUpdated(BaseChannel channel, BaseMessage message) {
        if (message.ogMetaData != null) {
            // You can create and customize the URL link preview by using the Open Graph metadata of the message.
        }
    }
}