Example #1
0
 /// <summary>
 /// Returns a timeline list of all published gfys in the users this user follows
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public async Task <GfyFeed> GetTimelineFeedAsync(RequestOptions options = null)
 {
     return(CurrentUserTimelineFeed.Create(Client, options, await Client.ApiClient.GetFollowsGfyFeedAsync(null, options).ConfigureAwait(false)));
 }
Example #2
0
 /// <summary>
 /// Returns a timeline list of all published gfys in the users this user follows
 /// </summary>
 /// <param name="count"></param>
 /// <param name="options">The options for this request</param>
 /// <returns></returns>
 public async Task <GfyFeed> GetTimelineFeedAsync(int count = GfycatClient.UseDefaultFeedCount, RequestOptions options = null)
 {
     Utils.UseDefaultIfSpecified(ref count, Client.ApiClient.Config.DefaultFeedItemCount);
     return(CurrentUserTimelineFeed.Create(Client, count, options, await Client.ApiClient.GetFollowsGfyFeedAsync(count, null, options).ConfigureAwait(false)));
 }