/// <summary>
 /// Creates a new album for the page or user 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 PostAlbum(string identifier, FacebookPostAlbumOptions options)
 {
     return(Client.DoAuthenticatedPostRequest("/" + identifier + "/albums", options));
 }
 /// <summary>
 /// Creates a new album for the page or user 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>
 /// <returns>Returns the ID of the created album.</returns>
 public FacebookPostAlbumResponse PostAlbum(string identifier, FacebookPostAlbumOptions options)
 {
     return(FacebookPostAlbumResponse.ParseResponse(Raw.PostAlbum(identifier, options)));
 }