/// <summary> /// Gets a list of items from the feed of the user or page with the specified <paramref name="identifier"/>. /// </summary> /// <param name="identifier">The identifier (ID or alias) of the user or page.</param> /// <param name="limit">The maximum amount of items to be returned on each page.</param> /// <param name="until">A timestamp that points to the start of the range of time-based data.</param> /// <param name="fields">A collection of the fields that should be returned by the API.</param> /// <returns>An instance of <see cref="FacebookGetFeedResponse"/> representing the response.</returns> public FacebookGetFeedResponse GetFeed(string identifier, int limit, EssentialsTime until, FacebookFieldsCollection fields) { return(FacebookGetFeedResponse.ParseResponse(Raw.GetFeed(identifier, limit, until, fields))); }
/// <summary> /// Gets a list of items from the feed of the user or page with the specified <paramref name="identifier"/>. /// </summary> /// <param name="identifier">The identifier (ID or alias) of the user or page.</param> /// <param name="fields">A collection of the fields that should be returned by the API.</param> /// <returns>An instance of <see cref="FacebookGetFeedResponse"/> representing the response.</returns> public FacebookGetFeedResponse GetFeed(string identifier, FacebookFieldsCollection fields) { return(FacebookGetFeedResponse.ParseResponse(Raw.GetFeed(identifier, fields))); }
/// <summary> /// Gets a list of items from the feed of the user or page with the specified <paramref name="identifier"/>. /// </summary> /// <param name="identifier">The identifier (ID or alias) of the user or page.</param> /// <param name="limit">The maximum amount of items to return.</param> /// <returns>An instance of <see cref="FacebookGetFeedResponse"/> representing the response.</returns> public FacebookGetFeedResponse GetFeed(string identifier, int limit) { return(FacebookGetFeedResponse.ParseResponse(Raw.GetFeed(identifier, limit))); }
/// <summary> /// Gets a list of items from the feed of the user or page matching the specified <paramref name="options"/>. /// </summary> /// <param name="options">The options for the call to the API.</param> /// <returns>An instance of <see cref="FacebookGetFeedResponse"/> representing the response.</returns> public FacebookGetFeedResponse GetFeed(FacebookGetFeedOptions options) { return(FacebookGetFeedResponse.ParseResponse(Raw.GetFeed(options))); }