示例#1
0
 /// <summary>
 /// Gets a list of recent media from the specified <paramref name="tag"/>.
 /// </summary>
 /// <param name="tag">The name of the tag.</param>
 /// <param name="count">The maximum amount of media to be returned.</param>
 /// <param name="maxTagId">The maximum tag ID. Only media after this ID will be returned.</param>
 /// <returns>An instance of <see cref="InstagramGetTagRecentMediaResponse"/> representing the response from the Instagram API.</returns>
 public InstagramGetTagRecentMediaResponse GetRecentMedia(string tag, int count, string maxTagId)
 {
     return(InstagramGetTagRecentMediaResponse.ParseResponse(Raw.GetRecentMedia(tag, count, maxTagId)));
 }
示例#2
0
 /// <summary>
 /// Gets a list of recent media from the tag 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="InstagramGetTagRecentMediaResponse"/> representing the response from the Instagram API.</returns>
 public InstagramGetTagRecentMediaResponse GetRecentMedia(InstagramGetTagRecentMediaOptions options)
 {
     return(InstagramGetTagRecentMediaResponse.ParseResponse(Raw.GetRecentMedia(options)));
 }
示例#3
0
 /// <summary>
 /// Gets a list of recent media from the specified <paramref name="tag"/>.
 /// </summary>
 /// <param name="tag">The name of the tag.</param>
 /// <returns>An instance of <see cref="InstagramGetTagRecentMediaResponse"/> representing the response from the Instagram API.</returns>
 public InstagramGetTagRecentMediaResponse GetRecentMedia(string tag)
 {
     return(InstagramGetTagRecentMediaResponse.ParseResponse(Raw.GetRecentMedia(tag)));
 }