1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Added the method setStickerMaskPosition for changing the mask position of a mask sticker.

This commit is contained in:
coder2020official
2023-03-11 23:06:57 +04:00
parent 9fa5b91e58
commit 715aabaf49
4 changed files with 49 additions and 1 deletions

View File

@@ -1628,6 +1628,13 @@ def set_sticker_keywords(token, sticker, keywords=None):
payload['keywords'] = json.dumps(keywords)
return _make_request(token, method_url, params=payload, method='post')
def set_sticker_mask_position(token, sticker, mask_position=None):
method_url = 'setStickerMaskPosition'
payload = {'sticker': sticker}
if mask_position:
payload['mask_position'] = mask_position.to_json()
return _make_request(token, method_url, params=payload, method='post')
def upload_sticker_file(token, user_id, sticker, sticker_format):
method_url = 'uploadStickerFile'