[WEB] Is the Global feed is not available for non-member?

Please correct me If I’m wrong, I’m trying to show the global feed following

const liveFeed = PostRepository.queryAllPosts();

liveFeed.once('dataUpdated', posts => {
    console.log(posts.map(post => post.postId))
});

From the result, I could get the data If I use an account which is joined some communities.

But for an account without joining any community, I cannot retrieve any post from it.

Please help confirm If the Global feed is not available for non-member?

Hello @Kamolla posts in global feed come from the communities that you’ve joined, thus, you cannot get posts from communities that you’re not a member :pray:

1 Like