/// <summary>
 /// Gets a list of albums of the user or page matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetAlbums(FacebookGetAlbumsOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return Client.DoAuthenticatedGetRequest("/" + options.Identifier + "/albums", options);
 }
 /// <summary>
 /// Gets a list of albums of the user or page matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookAlbumsResponse GetAlbums(FacebookGetAlbumsOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return FacebookAlbumsResponse.ParseResponse(Raw.GetAlbums(options));
 }