jak ukryć wpis strony za pomocą api facebook

Mam ten kod i to z tego linkuhttps://developers.facebook.com/docs/reference/api/page/ (Zobacz „Ukrywanie posta na stronie”)

Nie mam żadnego błędu, ale mój problem polega na tym, że ten kod nie działa. Post page nadal nie jest ukryty

Poniżej znajduje się mój kod:
$fanpage_credit = array(
        'access_token' => $page_token,
        'is_hidden' => true
    );

$fanpage_post_url = '/'.$post_id;
$postResult = $facebook->api($fanpage_post_url, 'post', $fanpage_credit ); 



echo 'HIDE SUCCESS '.time(); 

Czekam na odpowiedzi. dzięki!

questionAnswers(1)

yourAnswerToTheQuestion