Facebook Creating a new album

Creating a new album

// Make the request to the API
FacebookPostAlbumResponse response = service.Albums.PostAlbum("me", new FacebookPostAlbumOptions {
    Name = "My album",
    Message = "This is my new album."
});

// Get the ID of the created album
string id = response.Body.Id;