/// <summary>
 /// Gets information about the album matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetAlbum(FacebookGetAlbumOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return Client.DoAuthenticatedGetRequest("/" + options.Identifier);
 }
 /// <summary>
 /// Gets information about the album matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookAlbumResponse GetAlbum(FacebookGetAlbumOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return FacebookAlbumResponse.ParseResponse(Raw.GetAlbum(options));
 }