-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
main.go
66 lines (55 loc) · 2.45 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package main
import (
"fmt"
"os"
"github.com/mymmrac/telego"
tu "github.com/mymmrac/telego/telegoutil"
)
func main() {
botToken := os.Getenv("TOKEN")
// Create Bot
// Note: Please keep in mind that default logger may expose sensitive information, use in development only
bot, err := telego.NewBot(botToken, telego.WithDefaultDebugLogger())
if err != nil {
fmt.Println(err)
os.Exit(1)
}
// Send a message with provided message entities
_, _ = bot.SendMessage(tu.MessageWithEntities(tu.ID(1234567),
tu.Entity("Hi").Bold(), tu.Entity(" "), tu.Entity("There").Italic().Spoiler(), tu.Entity("\n"),
tu.Entity("The Link").TextLink("https://example.com").Italic(), tu.Entity("\n"),
tu.Entity("User: "), tu.Entity("???").TextMentionWithID(1234567),
))
// Create text with corresponding message entities
text, entities := tu.MessageEntities(
// No entity text (pain text)
tu.Entity("telego"),
// Formatting
tu.Entity("telego").Italic(), // “italic” (italic text)
tu.Entity("telego").Bold(), // “bold” (bold text)
tu.Entity("telego").Strikethrough(), // “strikethrough” (strikethrough text)
tu.Entity("telego").Underline(), // “underline” (underlined text)
tu.Entity("telego").Spoiler(), // “spoiler” (spoiler message)
tu.Entity("telego").Code(), // “code” (mono width string)
tu.Entity("telego").Pre("go"), // “pre” (mono width block)
tu.Entity("telego").Hashtag(), // “hashtag” (#hashtag)
tu.Entity("telego").Cashtag(), // “cashtag” ($USD)
tu.Entity("telego").URL(), // “url” (https://telegram.org)
tu.Entity("telego").BotCommand(), // “bot_command” (/start@jobs_bot)
tu.Entity("telego").Email(), // “email” (do-not-reply@telegram.org)
tu.Entity("telego").PhoneNumber(), // “phone_number” (+1-212-555-0123)
tu.Entity("telego").Mention(), // “mention” (@username)
// Links
tu.Entity("telego").TextLink("https://example.com"), // “text_link” (for clickable text URLs)
// Mentions
// “text_mention” (for users without usernames (https://telegram.org/blog/edit#new-mentions))
tu.Entity("telego").TextMention(&telego.User{}),
tu.Entity("telego").TextMentionWithID(1234567),
// Combination
tu.Entity("telego").Italic().Bold().Spoiler(),
tu.Entity("telego").URL().Bold(),
tu.Entity("telego").Spoiler().Email(),
)
fmt.Println()
fmt.Printf("Text: %q\nEntities: %+v\n", text, entities)
}