function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jamie ThompsonJamie Thompson 

Get user own (file) feeds with chatter api?

Hello everyone,

I want to get user own feeds (my post screen) with chatter api. Does anyone know how to do that?
'feeds/files/userId/feed-elements' -> this api does not only return my own file feeds but also includes my following users's file feeds.
KaranrajKaranraj
Jamie - Use the following REST service URL to get the chatter feed particular to that user /services/data/v29.0/chatter/feeds/user-profile/me/feed-items replace me with the user id. This REST service URL will display chatter feed for the current logged in user.

To know more about details about Chatter API resource check this link - https://developer.salesforce.com/page/Getting_Started_with_the_Chatter_REST_API
 
Jamie ThompsonJamie Thompson
Thanks Karanraj. It's working properly (y)