Viewing Post Content

Post Structure

In Social Plus's social SDK, posts with images, files, or videos follow a Parent-Child relationship, where each uploaded image/file is represented as a separate child post. When creating an image/file post, any text that is set will act as the Parent post. The Parent post contains a child posts property, which provides an array of Social Plus Post instances for each child post. For more information about post structure, please refer to - Post Structure

Each instance of a Post holds several pieces of information, including data, reactions, comments, metadata, child posts, and more. For text posts, you can access the actual data of the post through the data property. Similarly, for child posts, developers can also access the data through the same data property. Additionally, more details about uploaded files and images can be accessed through the provided functions; such as getFileInfo() or getImageInfo().

To illustrate this concept, consider a post that contains both text and an image. In this case, the parent post would be a text post, and its child post would be an image post. By accessing the child post property of the parent post, you can easily access and manage the child post information, allowing for a more flexible and efficient approach to managing posts in social applications.

Image Post

Posting visual content such as photos, graphics, or images is facilitated by this type of post. The maximum size for an image is 1 GB, and the image will be automatically transformed into four different sizes for versatile usage which are:

  • Small

  • Medium

  • Large

  • Full

This allows for flexible usage and easy integration into various social applications. For more information about an image, please refer to the page - Image Handling.

There are two ways to download the uploaded image.

  1. Using FileRepository

    FileRepository class provides a downloadImage(..) method to download images uploaded using the same class.

    Note: This class does not perform any kind of caching for downloaded images. Please refer to the header docs for the download method for more details.

  2. Using any third-party library or your implementation

    You can download the file/image directly from the provided fileUrl using your implementation or any custom third-party libraries of your choice.

If you are using your implementation to download the image of appropriate size, you need to construct the download URL yourself by appending size query parameter.

For example, to download a small image:

Value for Size query parameters can be: small, medium, large, or full.

File Post

This is a post that contains a file attachment, such as a PDF, a Word document, or any other type of file. This is a useful type of post for sharing files within a channel, such as a document or a photo. The maximum size for a file is 1 GB. For more information about a video file, please refer to the page - File Handling

Video Post

This is a useful type of post for sharing video content within a feed, such as a short clip or a longer video. The maximum size for a video is 1 GB, and the video will be automatically transcoded into different resolutions for versatile usage which are

  • 1080p

  • 720p

  • 480p

  • 360p

  • original

Once you upload a video the videos undergo transcoding from their original resolution. You can quickly access the original size of the video right after you make the video post. However, it takes time for the transcoded resolutions to be ready. This allows for flexible usage and easy integration into various social applications. For more information about a video file, please refer to the page - Video Handling.

Get video URL example

Live stream Post

Live stream posts offer an effective means of creating captivating and interactive content that engages users and promotes deeper connections among them. The Social Plus SDK enables developers to swiftly integrate live stream posts into a social feed, allowing them to share their real-time experiences with other users on the platform. For more information about live streaming, please refer to the page - Video.

Poll Post

To implement poll functionality in posts, developers can leverage the existing poll features in Social Plus SDK and integrate them into posts. Polls can be created as child posts within the post thread, with the poll data and options easily accessible to users. Users can then participate in the poll by selecting their preferred option, and the results can be displayed in posts. For more information about live streaming, please refer to the page - Poll.

Last updated