I trying to make Facebook event and here is my code:
return $this->facebook->api('/me/events', 'POST', array(
'name' => $title,
'start_time' => $start_time,
'description' => $description,
'privacy_type' => $privacy_type
));
But in privacy_type, OPEN and SECRET are working but FRIENDS is not working. How can I solve this problem? Thank you for helping me!