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 use Facebook-C#-SDK 5.0.3 FacebookClient.Post("me/events", [parameters including "privacy" => "secret"]). The new event shows as "Private Event" on my Facebook. However, my friends see the event appear on their Wall, and when they click on the event they see it as "Public Event".

I am trying to create test events for debugging purposes, but even though I see the event as "Private Event", and when I edit the event the three checkboxes are cleared: -- Anyone can view and RSVP (public event) -- Guests can invite Friends -- Show the guest list on the event page the event is still visible and announced to all my friends. They can't RSVP, but they do get the UX to post to the event's wall.

Thanks, Jon

share|improve this question

1 Answer

up vote 3 down vote accepted

With the SDK the convention is to pass parameters in as a dynamic object or dictionary. According to a post here the parameter name for setting visibility is 'privacy_type'. So (without testing) this is how I would go about it in .Net 4:

dynamic parameters = new ExpandoObject();
parameters.privacy_type = "SECRET";
_facebookClient.Post("me/events", parameters);
share|improve this answer
Thanks, "privacy_type" seems to work better than "privacy". Where did you get this information? I don't see it in the link developers.facebook.com/docs/reference/api/event. – Jon Newman Feb 25 '11 at 17:26
1  
It's in the top comment. As usual Facebook leaves it to us to decipher their documentation. – el_tone Feb 25 '11 at 17:45
Sorry, I'm feeling pretty stupid here. What do you mean by the "top comment"? I don't see a space for comments on this page. Are you using some kind of markup service? – Jon Newman Feb 27 '11 at 0:58
The discussion section at the bottom of that page. There is a post by Arvin Sudocode. – el_tone Feb 28 '11 at 11:27
Page developers.facebook.com/docs/reference/api/event does not contain a discussion section. However, I googled on Arvin Sudocode and found sudocode.net/article/373/… which contains all the needed information. If there is a widely used markup service for developers.facebook.com, I would love to use it, but I just don't see the Discussion link. Maybe the original link was wrong. thanks – Jon Newman Feb 28 '11 at 17:21
show 5 more comments

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.