Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would upload a video using the Youtube API v3 with curl in PHP, as described here: https://developers.google.com/youtube/v3/docs/videos/insert

I've this function

function uploadVideo($file, $title, $description, $tags, $categoryId, $privacy)
{
    $token = getToken(); // Tested function to retrieve the correct AuthToken

    $video->snippet['title']         = $title;
    $video->snippet['description']   = $description;
    $video->snippet['categoryId']    = $categoryId;
    $video->snippet['tags']          = $tags; // array
    $video->snippet['privacyStatus'] = $privacy;
    $res = json_encode($video);

    $parms = array(
        'part'  => 'snippet',
        'file'  => '@'.$_SERVER['DOCUMENT_ROOT'].'/complete/path/to/'.$file
        'video' => $res
    );

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'https://www.googleapis.com/upload/youtube/v3/videos');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $parms);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer '.$token['access_token']));
    $return = json_decode(curl_exec($ch));
    curl_close($ch);

    return $return;
}

But it returns this

stdClass Object
(
    [error] => stdClass Object
        (
            [errors] => Array
                (
                    [0] => stdClass Object
                        (
                            [domain] => global
                            [reason] => badContent
                            [message] => Unsupported content with type: application/octet-stream
                        )

                )

            [code] => 400
            [message] => Unsupported content with type: application/octet-stream
        )

)

The file is an MP4.

Anyone can help?

share|improve this question

2 Answers

up vote 0 down vote accepted

Unfortunately, we don't have a specific example of YouTube API v3 uploads from PHP available yet, but my general advice is:

  • Use the PHP client library instead of cURL.
  • Base your code on this example written for the Drive API. Because the YouTube API v3 shares a common API infrastructure with other Google APIs, examples for doing things like uploading files should be very similar across different services.
  • Take a look at the Python example for the specific metadata that needs to be set in a YouTube v3 upload.

In general, there are a lot of things incorrect with your cURL code, and I can't walk through all the steps it would take to fix it, as I think using the PHP client library is a much better option. If you are convinced you want to use cURL then I'll defer to someone else to provide specific guidance.

share|improve this answer
Thanks! My attempt was to make something lighter, but I'll try the official Google library – genna Nov 8 '12 at 9:05
In the Google_YoutubeService.php I can't find a function to call the insert method I need for. All methods are for listing ( channels, playlists, videos .. ) I have to wait for a newer version of the library? – genna Nov 8 '12 at 10:43
I've decided to use the Zend_Gdata_YouTube and the 2nd version of the API, due to the lack of the methods I need for – genna Nov 8 '12 at 15:09
You can use the Zend client library and v2 of the API if you'd like, sure. Here's the method to use with v3 of the API, though: code.google.com/p/google-api-php-client/source/browse/trunk/src/… – Jeff Posnick Nov 8 '12 at 16:39

I have this working now. There are a few tricks to it. The developers documentation is mostly right on their site: https://developers.google.com/youtube/v3/docs/videos/insert but I had to explore a bit too. If you set up your POST request using the following 4 things though, it should work (assuming your access token and api key are valid).

First off, the url for uploading is:

https://www.googleapis.com/upload/youtube/v3/videos (incorrect in their docs as of now)

You will need to set 3 headers:

"Authorization": "Bearer {YOUR_ACCESS_TOKEN}"
"Content-type": "video/mp4"
"Content-length": "{THE_VIDEOS_SIZE}"

You also need to define 2 parameters:

"part": "snippet"
"key": {YOUR_API_KEY}

Finally you will need to pass the file using the data portion of your request.

Now you should be able to do this as a POST request. If you read through how their client works you will see they recommend retrying if you are returned errors of code 500, 502, 503, or 504. Clearly you will want to have a wait period between retries and a max number of retries. It works in my system everytime, though I am using python & urllib2.

To set the video information, I follow the video POST request with an update PUT request (see docs). They claim in the docs that you can do this all with one request but I have yet to be able to do this using their described method. Further investigation is needed, until then, the two requests right after each other works great.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.