Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
According to this page, it should be a json encoded value something like (i suppose): [value: 'ALL_FRIENDS'] or {value: 'ALL_FRIENDS'} – ifaour May 13 '11 at 16:23
thanks, worked fine. – user752394 May 23 '11 at 8:01
I've added it as answer. – ifaour May 23 '11 at 15:58
I'm glad it worked for you, but I still can't get it to work myself. Can you please post an example of the working solution? Thanks. – user787368 Jun 7 '11 at 11:37

2 Answers

According to this page, it should be a json encoded value something like (i suppose): [value: 'ALL_FRIENDS'] or {value: 'ALL_FRIENDS'}

share|improve this answer

This works for me :-

dynamic parameters = new ExpandoObject();
parameters.name = theName;
parameters.privacy = "{'value':'" + theValue + "'}";
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.