0

如果我使用下面的表格,视频会上传到 youtube。登录后,我可以从 youtube 获取响应并采用以下表单中的响应。

 <form action="<?php echo( $response->url ); ?>?nexturl=<?php echo( urlencode( $nexturl ) ); ?>" method="post" enctype="multipart/form-data">
        <p class="block">
            <label>Upload Video</label>
            <span class="youtube-input">
                <input id="file" type="file" name="file" />
            </span>                        
        </p>
        <input type="hidden" name="token" value="<?php echo( $response->token ); ?>"/>
        <input type="submit" value="Upload Video" />
    </form>

但是,如果尝试对 curl 进行如下操作,则它不起作用.. 有什么建议吗??

$file_name_with_full_path = $video_path; //$video_path is like /path/to/abc.mp4
$post = array('file'=>'@'.$file_name_with_full_path, 'token' => $response->token,);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$response->url."?nexturl=".urlencode($nexturl));
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$result = curl_exec($ch);
curl_close ($ch);
echo $result;
die();

给定 bool(false) 的回显结果。请告诉这有什么问题。提前致谢。

4

0 回答 0