The Sferum API Interface provides methods to interact with the VK messaging service through API endpoints. This project includes functions for sending messages, retrieving user history, and executing JS-like code code on the server.
- Python 3.x
To install this lib run this in terminal:
pip install SferumBridgeTo interact with VK's API, you'll need to authenticate your session and obtain the remixdsid cookie. Follow these steps:
-
Open your web browser and go to sferum web version.
-
Log in to your VK account if you haven't already.
-
After logging in, open the Developer Tools in your web browser (right-click anywhere on the page and select "Inspect" or press
F12). -
Navigate to the "Application" tab in Developer Tools.
-
On the left sidebar, find and click on "Cookies" under the "Storage" section. You should see a list of cookies that belong to the
https://web.vk.medomain. -
Look for the
remixdsidcookie. This cookie is usually a long alphanumeric string. -
Copy the value of the
remixdsidcookie. You will use this value to authenticate your requests in the SferumAPI class.
To create an instance of the SferumAPI, you need to pass the remixdsid obtained from the previous step:
import SferumBridge
remixdsid = 'YOUR_REMIXDSID_COOKIE_HERE'
api = SferumAPI(remixdsid)peer_id is a chat id. You can get it from the URL:
web.vk.me/convo/YOUR_CHAT_ID
-
Sending a Message:
To send a message, use:
response = api.send_message(peer_id=12345678, text="Hello, World!")
-
Deleting a Message:
To delete a message, use:
response = api.delete_message(peer_id=12345678, message_conversation_id=321)
-
Retrieving Message History:
To retrieve message history, use:
response = api.get_history(peer_id=12345678, count=20)
-
Executing Code:
To execute a small piece of JS-like code on the server, use:
response = api.execute(code=""" var res0=API.messages.delete({"peer_id":2000000002,"cmids":"152","delete_for_all":1,"spam":0,"group_id":0,"lang":"ru"}); return [res0]; """)
You can use
fork()to run task in background andwait()to wait it I found out you can make only 999 cycles inwhileloop and 25 API requestsHere`s more complicated example:
response = api.execute(code=""" return [ wait(fork( API.users.get({ user_ids: 1058611848, fields: 'photo_100,photo_200,sex,screen_name,first_name_gen,is_nft,animated_avatar,custom_names_for_calls', }) )), API.calls.getSettings({}), ]; """)
Интерфейс API Sferum предоставляет методы для взаимодействия с сервисом обмена сообщениями VK через API-эндпоинты. Этот проект включает функции для отправки сообщений, получения истории пользователей и выполнения кода, подобного JS, на сервере.
- Python 3.x
Чтобы установить эту библиотеку, выполните следующую команду в терминале:
pip install SferumBridgeЧтобы взаимодействовать с API VK, вам необходимо аутентифицировать сессию и получить cookie remixdsid. Следуйте этим шагам:
-
Откройте веб-браузер и перейдите на веб-версию sferum.
-
Войдите в свою учетную запись VK, если еще не сделали этого.
-
После входа откройте Инструменты разработчика в веб-браузере (щелкните правой кнопкой мыши на любой области страницы и выберите "Просмотреть код" или нажмите
F12). -
Перейдите на вкладку "Приложение" в Инструментах разработчика.
-
В левой боковой панели найдите и кликните на "Cookies" в разделе "Хранилище". Вы должны увидеть список cookie, принадлежащих домену
https://web.vk.me. -
Найдите куку
remixdsid. Эта кука обычно представляет собой длинную строку из буквенно-цифровых символов. -
Скопируйте значение куки
remixdsid. Это значение вам понадобится для аутентификации ваших запросов в классе SferumAPI.
Чтобы создать экземпляр SferumAPI, вы должны передать remixdsid, полученный на предыдущем шаге:
import SferumBridge
remixdsid = 'ВАША_COOKIE_REMIXDSID_ЗДЕСЬ'
api = SferumAPI(remixdsid)peer_id - это ID чата. Вы можете получить его из URL:
web.vk.me/convo/YOUR_CHAT_ID
-
Отправка сообщения:
Чтобы отправить сообщение, используйте:
response = api.send_message(peer_id=12345678, text="Привет, мир!")
-
Удаление сообщения:
Чтобы удалить сообщение, используйте:
response = api.delete_message(peer_id=12345678, message_conversation_id=321)
-
Получение истории сообщений:
Чтобы получить историю сообщений, используйте:
response = api.get_history(peer_id=12345678, count=20)
-
Выполнение кода:
Чтобы выполнить небольшой фрагмент кода, подобного JS, на сервере, используйте:
response = api.execute(code=""" var res0=API.messages.delete({"peer_id":2000000002,"cmids":"152","delete_for_all":1,"spam":0,"group_id":0,"lang":"ru"}); return [res0]; """)
Вы можете использовать
fork()для выполнения задач в фоновом режиме иwait(), чтобы их подождать. Я узнал, что вы можете выполнить только 999 циклов в циклеwhileи 25 API-запросов.Вот более сложный пример:
response = api.execute(code=""" return [ wait(fork( API.users.get({ user_ids: 1058611848, fields: 'photo_100,photo_200,sex,screen_name,first_name_gen,is_nft,animated_avatar,custom_names_for_calls', }) )), API.calls.getSettings({}), ]; """)