commit
6a9b3dc5e3
|
@ -1807,7 +1807,7 @@ func (config ShippingConfig) params() (Params, error) {
|
||||||
return params, err
|
return params, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// PreCheckoutConfig conatins information for answerPreCheckoutQuery request.
|
// PreCheckoutConfig contains information for answerPreCheckoutQuery request.
|
||||||
type PreCheckoutConfig struct {
|
type PreCheckoutConfig struct {
|
||||||
PreCheckoutQueryID string // required
|
PreCheckoutQueryID string // required
|
||||||
OK bool // required
|
OK bool // required
|
||||||
|
|
|
@ -103,7 +103,7 @@ things. We can add this code in right after the line enabling debug mode.
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Congradulations! You've made your very own bot!
|
Congratulations! You've made your very own bot!
|
||||||
|
|
||||||
Now that you've got some of the basics down, we can start talking about how the
|
Now that you've got some of the basics down, we can start talking about how the
|
||||||
library is structured and more advanced features.
|
library is structured and more advanced features.
|
||||||
|
|
|
@ -43,7 +43,7 @@ pull request!
|
||||||
|
|
||||||
- By default, bots only get updates directly addressed to them. If you need to
|
- By default, bots only get updates directly addressed to them. If you need to
|
||||||
get all messages, you must disable privacy mode with Botfather. Bots already
|
get all messages, you must disable privacy mode with Botfather. Bots already
|
||||||
added to groups will need to be removed and readded for the changes to take
|
added to groups will need to be removed and re-added for the changes to take
|
||||||
effect. You can read more on the [Telegram Bot API docs][api-docs].
|
effect. You can read more on the [Telegram Bot API docs][api-docs].
|
||||||
|
|
||||||
[api-docs]: https://core.telegram.org/bots/faq#what-messages-will-my-bot-get
|
[api-docs]: https://core.telegram.org/bots/faq#what-messages-will-my-bot-get
|
||||||
|
|
|
@ -74,8 +74,8 @@ mediaGroup := NewMediaGroup(ChatID, []interface{}{
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
A `MediaGroupConfig` stores all of the media in an array of interfaces. We now
|
A `MediaGroupConfig` stores all the media in an array of interfaces. We now
|
||||||
have all of the data we need to upload, but how do we figure out field names for
|
have all the data we need to upload, but how do we figure out field names for
|
||||||
uploads? We didn't specify `attach://unique-file` anywhere.
|
uploads? We didn't specify `attach://unique-file` anywhere.
|
||||||
|
|
||||||
When the library goes to upload the files, it looks at the `params` and `files`
|
When the library goes to upload the files, it looks at the `params` and `files`
|
||||||
|
|
|
@ -567,7 +567,7 @@ func NewEditMessageText(chatID int64, messageID int, text string) EditMessageTex
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewEditMessageTextAndMarkup allows you to edit the text and replymarkup of a message.
|
// NewEditMessageTextAndMarkup allows you to edit the text and reply markup of a message.
|
||||||
func NewEditMessageTextAndMarkup(chatID int64, messageID int, text string, replyMarkup InlineKeyboardMarkup) EditMessageTextConfig {
|
func NewEditMessageTextAndMarkup(chatID int64, messageID int, text string, replyMarkup InlineKeyboardMarkup) EditMessageTextConfig {
|
||||||
return EditMessageTextConfig{
|
return EditMessageTextConfig{
|
||||||
BaseEdit: BaseEdit{
|
BaseEdit: BaseEdit{
|
||||||
|
|
2
types.go
2
types.go
|
@ -290,7 +290,7 @@ type Chat struct {
|
||||||
// optional
|
// optional
|
||||||
Permissions *ChatPermissions `json:"permissions,omitempty"`
|
Permissions *ChatPermissions `json:"permissions,omitempty"`
|
||||||
// SlowModeDelay is for supergroups, the minimum allowed delay between
|
// SlowModeDelay is for supergroups, the minimum allowed delay between
|
||||||
// consecutive messages sent by each unpriviledged user. Returned only in
|
// consecutive messages sent by each unprivileged user. Returned only in
|
||||||
// getChat.
|
// getChat.
|
||||||
//
|
//
|
||||||
// optional
|
// optional
|
||||||
|
|
Loading…
Reference in New Issue