When I am fetching post form community, I am not getting feed type in post. It shows null. How get feed type for any post?
Below is the code snippet I am using:
AmitySocialClient.newPostRepository()
.getPosts()
.targetMe()
// .feedType(AmityFeedType.PUBLISHED)
.sortBy(AmityPostSortOption.LAST_CREATED)
.includeDeleted(false)
.getPagingData(token: token, limit: 100);
Do I need to pass feed type while fetching the post? If so what If I need to show different UI for different feed type status?