3.1.5.35.2.2.7 TimelineFeed

Return Type: Microsoft.SharePoint.Client.Social.SocialRestFeed

The Timelinefeed method returns the same kind of information as the News method (see section 3.1.5.35.2.2.5) but uses a different filter for selecting threads. The News method selects threads with the most recent reply post, but the Timelinefeed method selects threads with the most recent root post.

Parameters:

feedOptions: Specify the maximum number of threads, date-time values to use for selecting threads, and sort order.

Type: Microsoft.SharePoint.Client.Social.SocialFeedOptions

For details on the SocialFeedOptions type, see section 3.1.5.20.

For example, the following REST HTTP_GET message calls the Timelinefeed resource. The parameter is specified in the URL; consequently, the entity body is equal to the empty string ("").

 http://contoso.com/my/_api/social.feed/my/Timelinefeed(MaxThreadCount=25,SortOrder=0,NewerThan=@v)?@v=datetime'2012-04-16T08:11' 

The @v construct used in this message allows a colon (:) to be included in the date-time value.