/// <summary> /// Gets the feed of the authenticated user. /// </summary> /// <param name="options">The options for the call to the API.</param> /// <returns>Returns an instance of <code>SocialHttpResponse</code> representing the response.</returns> public SocialHttpResponse GetUserFeed(InstagramUserFeedOptions options) { return Client.DoAuthenticatedGetRequest("https://api.instagram.com/v1/users/self/feed", options); }
/// <summary> /// Gets the feed of the authenticated user. /// </summary> /// <param name="options">The options for the call to the API.</param> public InstagramUserFeedResponse GetUserFeed(InstagramUserFeedOptions options) { if (options == null) throw new ArgumentNullException("options"); return InstagramUserFeedResponse.ParseResponse(Raw.GetUserFeed(options)); }