Esempio n. 1
0
 /// <summary>
 /// Gets a list of favorites based on the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public TwitterTimelineResponse GetFavorites(TwitterGetFavoritesOptions options)
 {
     return(TwitterTimelineResponse.ParseResponse(Raw.GetFavorites(options)));
 }
 /// <summary>
 /// Gets a list of favorites based on the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the request to the API.</param>
 /// <returns>An instance of <see cref="IHttpResponse"/> representing the raw response.</returns>
 /// <see>
 ///     <cref>https://dev.twitter.com/rest/reference/get/favorites/list</cref>
 /// </see>
 public IHttpResponse GetFavorites(TwitterGetFavoritesOptions options)
 {
     return(Client.DoHttpGetRequest("https://api.twitter.com/1.1/favorites/list.json", options));
 }