How to upload files on YouTube using resumable upload API v3
问题 The following code does not work, how can I use it to upload files on YouTube? $service_url = 'https://www.googleapis.com/upload/youtube/v3/videos?uploadType=resumable&part=snippet,status'; $c = curl_init($service_url); $curl_post_data = array( "Authorization" => $val, "Content-Length" => '275', "Content-Type" => 'application/json; charset=UTF-8', "X-Upload-Content-Length" => '2394849', "X-Upload-Content-Type" => 'video/mov' ); curl_setopt($c, CURLOPT_RETURNTRANSFER, true); curl_setopt($c,