Setting privacy to SECRET in the POST request as suggested by the documentation does not work. I tried both through my own code and Graph API Explorer. The created event is always public.
Is this simply not supported or am I doing something wrong?
Found the solution to this problem at http://codecri.me/article/373/create-an-event-using-the-facebook-graph-api-in-php/
Apparently the correct key to set for event privacy is
privacy_typeand notprivacyas suggested by the documentation.Hope this helps somebody…