I cannot set the privacy while creating a new Album in fb using facebook-c#-sdk 5.0.25
var albumDetails = new Dictionary<string, object>();
albumDetails.Add("name", "test name");
albumDetails.Add("description", "test description");
albumDetails.Add("privacy", "ALL_FRIENDS"); // I get an error here,
//Invalid Privacy value
var fbResult = fb.Post("me/albums", albumDetails);
I tried setting to other values like "EVERYONE" but without success. Please let me know what is the correct set of values.
Thanks, Partha

[value: 'ALL_FRIENDS']or{value: 'ALL_FRIENDS'}– ifaour May 13 '11 at 16:23