/// <summary>
 /// Get the list of users this user follows.
 ///
 /// Required scope: relationships
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse Follows(long userId, InstagramFollowsOptions options)
 {
     return(Client.DoAuthenticatedGetRequest("https://api.instagram.com/v1/users/" + userId + "/follows", options));
 }
 /// <summary>
 /// Get the list of users this user follows.
 ///
 /// Required scope: relationships
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public InstagramUsersResponse Follows(long userId, InstagramFollowsOptions options)
 {
     return(InstagramUsersResponse.ParseResponse(Raw.Follows(userId, options)));
 }