Nestgram
  • ⭐About Nestgram
  • 📄Guide
  • 📰News
  • đŸ”ŧHandling updates
    • Handling commands
    • Handling text messages
    • Handling other updates
    • Entities: url, email and other
    • Other arguments in handler
    • Handling media files and download it
  • đŸĒļNestgram Features
    • Services
    • Middlewares and Params
    • Sending messages correctly
    • Answer class
    • Scopes
    • States
    • Views
  • đŸ’ŦMessages
    • Sending a photo, video and other media
    • Sending a media group
    • Send location (live) or venue
    • Send contact
    • Send poll
    • Send dice
    • Edit/delete messages
    • Copy or Forward a message
  • âŒ¨ī¸Keyboards
    • Keyboard types, building keyboard
    • Handle underTheMessage keyboard button click by Alert or Toast
    • Keyboard layouts
  • âš™ī¸Config
    • CLI
    • Webhooks and run config
    • Api class
    • Modules
      • Mongo module
    • Controller Helper class
  • 🤖API Reference
    • Set chat action
    • Save user profile photo
    • Ban, unban user or chat
    • Restrict or Promote user
    • Set chat permissions
    • Set chat admin custom title
    • Chat invite links
    • Join requests
    • Update chat info, photo, title, description and more
    • Pin or unpin messages
    • Get chat info, leave chat
    • Check user subscription
    • Chat sticker set
    • My commands
    • My default admin rights
    • Menu button
Powered by GitBook
On this page
  • Set menu button
  • Get menu button
  1. API Reference

Menu button

You can set/get menu button

Set menu button

You can set menu button using MenuButton class-method or .setMenuButton answer/api method

MenuButton class-method or .setMenuButton answer/api method take arguments:

Argument
Description
Required
1

Optional

2

Chat id you want to set menu button to. Pass '_current' to set menu button for current chat

Optional

If you want to know what arguments an API method takes, see the IDE hint

In answer method or class-method, you can pass '_current' as 2nd argument to set menu button for current chat

app.controller.ts
import { Controller, OnCommand, MenuButton } from 'nestgram';
import { AppService } from './app.service';

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @OnCommand('start')
  setMenuButton() {
    return new MenuButton({
      type: 'web_app',
      text: 'Open web app',
      web_app: { url: 'https://youtube.com/' },
    }).next('Menu button updated!');
  }
}

Get menu button

To get the menu button, use .getMenuButton answer/api method

.getMenuButton answer method takes argument: chat id you want to get menu button (optional, for all by default). You can pass '_current' to get menu button in the current chat

If you want to know what arguments an API method takes, see the IDE hint

app.controller.ts
import { Controller, OnCommand, GetAnswer, Answer } from 'nestgram';
import { AppService } from './app.service';

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @OnCommand('start')
  async getMenuButton(@GetAnswer() answer: Answer) {
    console.log(await answer.getMenuButton());
    return 'Logged to console!';
  }
}
PreviousMy default admin rights

Last updated 2 years ago

you want to set

🤖
Menu button