Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ошибка в wall.post #105

Open
wztest123 opened this issue May 22, 2023 · 0 comments
Open

Ошибка в wall.post #105

wztest123 opened this issue May 22, 2023 · 0 comments

Comments

@wztest123
Copy link

Добрый день через делаю публикацию поста с видео.
Итог видео он загружает но пост публикует с идом видео + 1
Например загрузил с ид 12345 а опубликовал с 12346 соответственно видео такое не загружается в посту.
Как исправить?

Вот код который я использовал

<?php
equire_once './vendor/autoload.php';

use VK\Client\VKApiClient;

$access_token = 'скрыт';

$vk = new VKApiClient();
$upload_server = $vk->video()->save($access_token, [
'group_id' => '220759556', // ID вашей группы, если вы публикуете от имени группы
]);

$upload_url = $upload_server['upload_url'];

$video_file = '2.mp4';
$curl_file = new CURLFile($video_file, 'video/mp4');
$post_params = [
'video_file' => $curl_file,
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $upload_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_params);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

// Получение информации о загруженном видео
$video_info = $vk->video()->save($access_token, json_decode($response, true));
$video_id = $video_info['video_id'];

$params = [
'owner_id' => -220759556, // ID вашей группы или пользователя
'message' => 'Текст сообщения',
'attachments' => 'video' . abs($video_info['owner_id']) . '_' . $video_id,
];

// Опубликование поста
$post_id = $vk->wall()->post($access_token, $params);

Как это исправить? Или же как правильно опубликовать видео на стену группы?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@wztest123 and others