Подскажите, пожалуйста, кто нибудь как работает метод appWidgets.update
В док-ции нет примеров запросов
Мой код на питоне не работает
Просто ничего не происходит и никаких ошибок не выдает
import sys
import vk_api, random
from vk_api.bot_longpoll import VkBotLongPoll, VkBotEventType
from vk_api.keyboard import VkKeyboard, VkKeyboardColor
import sqlite3, hashlib
con = sqlite3.connect("bot_vk.db")
cur = con.cursor()
TOKEN = 'ывафвф'
club_id = 'уафыв'
t = """return {
"title": "My Table",
"title_url": "https://link",
"title_counter": 31,
"more": "All",
"more_url": "https://link2",
"head": [{
"text": "First"
}, {
"text": "Second",
"align": "center"
}],
"body": [
[{
"text": "This First",
"icon_id": "3484735_23434324"
},
{
"text": "This second",
"url": "https://vk.com/wall-12345_542321"
}],
[{
"text": "This second first",
"icon_id": "3484735_23434324"
},
{
"text": "This second second",
"url": "https://vk.com/wall-12345_54321"
}
]
]
};"""
def main():
vk_session = vk_api.VkApi(
token=TOKEN)
longpoll = VkBotLongPoll(vk_session, club_id)
vk = vk_session.get_api()
vk.appWidgets.update(type='table', code=t)
if __name__ == '__main__':
while True:
try:
main()
except Exception:
pass