1
0
telegram/delete_chat_photo.go

29 lines
797 B
Go
Raw Normal View History

package telegram
import (
2017-09-04 20:54:28 +00:00
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
2017-10-06 07:55:54 +00:00
// DeleteChatPhoto delete a chat photo. Photos can't be changed for private
// chats. The bot must be an administrator in the chat for this to work and must
// have the appropriate admin rights. Returns True on success.
//
2017-10-06 07:55:54 +00:00
// Note: In regular groups (non-supergroups), this method will only work if the
// 'All Members Are Admins' setting is off in the target group.
func (bot *Bot) DeleteChatPhoto(chatID int64) (bool, error) {
var args http.Args
args.Add("chat_id", strconv.FormatInt(chatID, 10))
2017-09-05 09:20:10 +00:00
resp, err := bot.request(nil, "deleteChatPhoto", &args)
if err != nil {
2017-09-04 20:54:28 +00:00
return false, err
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}