PiPiLuLuDoggy

Results 6 comments of PiPiLuLuDoggy

If the topic group is public, I can successfully create a new topic by using @groupname as the ChatID parameter. But even if the group is public, I cannot successfully...

By the way, how do you use update.Message.Chat.ID to represent the ID of a private topic group? I can only use numbers or usernames.

What I mean is how to use update.message to get the ID of the private topic group? Do I need to deliberately let the robot send a message in the...

I run this code: ```golang func main() { ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt) defer cancel() opts := []bot.Option{ bot.WithDefaultHandler(handler), bot.WithMessageTextHandler("/add", bot.MatchTypeExact, addTopic), } b, err := bot.New("TOKEN", opts...) if err...

Also, have you tried to use the numeric ID of the topic group, such as 12345678, as the parameter of ChatID to successfully create a topic?