Twitter:如何上传Dropbox TP Twitter的视频?

问题描述 投票:-2回答:1

我必须将Dropbox中的视频上传到Twitter。我用scottybo / twitter该软件包成功上传了图片,但没有上传保管箱视频。

$uploadedMedia = Twitter::uploadMedia([
        'media_type'=>'video/*',
        'media' => file_get_contents('https://dl.dropboxusercontent.com/s/3gi43cvzx3axg4k/Shot%20by%20Shintaro%20Shimada_ea754591-de67-4308-891c-07d89b97bff2.mp4?dl=0')
      ]);

此代码显示400错误有人可以帮助我吗?

video twitter upload
1个回答
1
投票

视频上传应通过分块处理

$buffer = file_get_contents($url);
$response = Twitter::post('media/upload', ['command' => 'INIT', 'media_type' => 'video/mp4', 'total_bytes' => strlen($buffer)], true);
$media_id = $response->media_id;
$response = Twitter::post('media/upload', ['command' => 'APPEND', 'media_id' => $media_id, 'segment_index' => '0', 'media' => $buffer], true);
$uploadedMedia = Twitter::post('media/upload', ['command' => 'FINALIZE', 'media_id' => $media_id], true);
© www.soinside.com 2019 - 2024. All rights reserved.