VKontakte (VK) is the largest social network in Russia and Eastern Europe, with over 100 million monthly active users. VK provides a comprehensive API for social media management, messaging, content publishing, group administration, and advertising operations.
With the VKontakte integration in AACFlow, you can:
- Publish wall posts: Automatically create and schedule posts on user profiles, groups, and public pages with text, images, and attachments
- Send messages: Programmatically send direct messages to users or groups via VK Messenger
- Manage group content: Post to group walls, moderate comments, and manage community settings
- Retrieve user and group information: Access detailed profile data, group members, and subscription lists
- Handle media uploads: Upload photos, videos, and documents to VK servers for use in posts and messages
- Monitor activity: Track likes, reposts, comments, and other engagement metrics for content analysis
The VK API integration enables comprehensive social media automation — from content scheduling and audience engagement to analytics and moderation — all within your AACFlow workflows.
Nutzungsanleitung
Integrate VK into the workflow. Can publish wall posts, send messages, get user and group info, and upload media. Requires a VK API access token.
Tools
vk_wall_post
Create a post on a VK user or group wall
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
ownerId | number | Ja | User or group ID (negative for groups) |
message | string | Ja | Post text content |
attachments | string | Nein | Comma-separated attachment IDs |
publishDate | number | Nein | Unix timestamp for scheduled publishing |
fromGroup | boolean | Nein | Whether to post on behalf of the group |
signed | boolean | Nein | Whether to add author signature |
accessToken | string | Ja | VK API access token |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
postId | number | ID of the created post |
ownerId | number | Owner ID of the post |
vk_messages_send
Send a direct message to a VK user
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
userId | number | Ja | Recipient user ID |
message | string | Ja | Message text |
attachment | string | Nein | Media attachment |
randomId | number | Ja | Unique message identifier |
accessToken | string | Ja | VK API access token |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
messageId | number | ID of the sent message |
vk_users_get
Retrieve detailed information about VK users
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
userIds | string | Ja | Comma-separated user IDs |
fields | string | Nein | Additional profile fields to return |
accessToken | string | Ja | VK API access token |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
users | array | Array of user profile objects |
count | number | Number of users returned |

