Giter VIP home page Giter VIP logo

Comments (6)

mukel avatar mukel commented on June 11, 2024

More details in the official doc: https://core.telegram.org/bots/api#setmycommands
It's been a long time since I wrote a bot but something like this should do it:

val commands = List(BotCommand("hello", "Nice to meet you!"))
request(SetMyCommands(commands)) // .void

Are you getting an error when sending this request?

from telegram.

benthecarman avatar benthecarman commented on June 11, 2024

This worked, thank you!

from telegram.

benthecarman avatar benthecarman commented on June 11, 2024

Nevermind am getting this error

com.bot4s.telegram.api.TelegramApiException: Bad Request: BOT_COMMAND_INVALID
at com.bot4s.telegram.api.RequestHandler.processApiResponse(RequestHandler.scala:132)

from telegram.

ex0ns avatar ex0ns commented on June 11, 2024

I've tested the following code in the EchoBot

  request(SetMyCommands(List(BotCommand("hello", "world")))).void

And it worked well, could you share the code have ?

from telegram.

benthecarman avatar benthecarman commented on June 11, 2024

I do

def start(): Future[Unit] = {
    val commands = List(
      BotCommand("customRefCode", "<username> <refCode>"),
      BotCommand("satsback", "Gives total sats back ever given"),
      BotCommand("accounting", "Gives accounting stats and profits"),
      BotCommand("users", "Gives stats on user counts"),
      BotCommand("processUnhandled", "Forces processing of invoices")
    )

    val f = for {
      _ <- run()
      _ <- request(SetMyCommands(commands))
      _ <- sendTelegramMessage("Invoice monitor started!")
    } yield ()

    f.failed.map { err =>
      logger.error("Error starting telegram handler: ", err)
    }

    f
  }

from telegram.

ex0ns avatar ex0ns commented on June 11, 2024

I see, this is because the command must be lowercase:

command | String | Text of the command; 1-32 characters. Can contain only lowercase English letters, digits and underscores.
-- | -- | --

https://core.telegram.org/bots/api#botcommand

We could enforce that in the library, I will try to implement that in a future release

from telegram.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.