0
私はgithub.com/go-telegram-bot-apiを使用してボットを作成しています。私はクライアントの位置を尋ねたい。どうすればいいのですか?これまでのところ、私はこれをしなかった:GoLang Telegram-bot-api場所の問い合わせ方法は?
updates, err := bot.GetUpdatesChan(u)
for update := range updates {
if update.Message == nil {
continue
}
switch update.Message.Text {
case "/shop":
msg := tgbotapi.NewMessage(update.Message.Chat.ID,"Send me your location")
//I need to make this message ask for the location
msg.Text = tgbotapi.ChatFindLocation
bot.Send(msg)
continue
}
}