Disscuss about Global Feed

Hi team,

I searched the documents and it looks like there is no way to display all posts from both following and non-following users in the global feed. I tried modifying the network-setting/social configuration as follows:

json

Copy

{
    "isFollowWithRequestEnabled": false,
    "showOnlyMyFeed": false,
    "showMyPost": false,
    "showEveryonePost": true,
    "showCommunityPost": false,
    "showFollowingPost": false,
    "maxGlobalPinnedPost": 1
}

However, it didn’t work as expected.

If anyone has a solution, please share it with me.

Thank you.

Hello @duongnb, to provide a more accurate solution, could you please share more details on how it is not working as expected? Additionally, which API or function are you using to query the global feed?

I’m using the TypeScript SDK with the following query:

FeedRepository.queryGlobalFeed({
    limit: limit,
    useCustomRanking: true
});

I expect to receive posts from all users (including non-following users), but I’m still only getting posts from the authenticated user and their following users.

Any insights or suggestions?

Thank you.

Hello @duongnb, after consulting with our team, we confirmed that to query posts with the configuration you’ve applied via the API, you’ll need to use the following endpoint: API. Unfortunately, this configuration is not currently supported on the SDK.

Thanks for your reply, i will use this.