mggflow/vk-automatic

v1.1.2 2022-07-10 01:21 UTC

This package is auto-updated.

Last update: 2024-09-11 01:02:17 UTC


README

关于

此包通过API自动化常规VK任务。

使用方法

要安装

composer require mggflow/vk-automatic

设置账户在线状态的示例

$token = "access token for VK API";
$apiVersion = 5.131;

$api = new API($token, $apiVersion);
$task = new EternalOnline($this->api);

// Second argument is null because this task dont need any data.
$result = $task->execute($api);

// Result object fields is different for tasks.
var_dump($result->onlineResult);