Как в телеграм боте добавить параметр scope для вывода меню в функции setMyCommands для конкретного пользователя.
private function menuButton(){
$menu = [
['command' => 'a', 'description' =>'gf'],
['command'=> 'b', 'description' => 'fr'],
['command' => 'c', 'description' => 'Se'],
['command'=> 'd', 'description' => 'Mon']];
return json_encode($menu);
}
private function send($chat_id){
$scope = '{"type":"chat", "chat_id":"'.$chat_id.'"}';
$this->botApiQuery("setMyCommands", ['commands'=> $this->menuButton(),
'scope' => $scope]);
}