lichi/vk-sdk

lichi框架核心

1.0.3 2021-02-20 21:52 UTC

This package is auto-updated.

Last update: 2024-09-16 20:32:25 UTC


README

安装说明

composer require lichi/vk-sdk

简单使用sdk

include "vendor/autoload.php";

use Lichi\Vk\Sdk\ApiProvider;

$apiProvider = new ApiProvider("VK_TOKEN");
$apiProvider->documents->downloadFromUrl("URL_DOCUMENTS", "file.jpg");
$attachment = $apiProvider->documents->upload("file.jpg", USER_ID);
$message_id = $apiProvider->messages->send(USER_ID, "Text Message", ['attachment'=>$attachment]);