/// <summary>
 /// Gets a list of albums of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The ID or name of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookAlbumsResponse GetAlbums(string identifier, FacebookAlbumsOptions options) {
     return FacebookAlbumsResponse.ParseResponse(Raw.GetAlbums(identifier, options));
 }
 /// <summary>
 /// Gets a list of albums of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The identifier (ID or name) of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetAlbums(string identifier, FacebookAlbumsOptions options)
 {
     return(Client.DoAuthenticatedGetRequest("/" + identifier + "/albums", options));
 }
 /// <summary>
 /// Gets a list of albums of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The identifier (ID or name) of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetAlbums(string identifier, FacebookAlbumsOptions options) {
     return Client.DoAuthenticatedGetRequest("/" + identifier + "/albums", options);
 }
 /// <summary>
 /// Gets a list of albums of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The ID or name of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookAlbumsResponse GetAlbums(string identifier, FacebookAlbumsOptions options)
 {
     return(FacebookAlbumsResponse.ParseResponse(Raw.GetAlbums(identifier, options)));
 }