I'm working on a web app, trying to enable sharing a video on Youtube, essentially adding an "Upload to youtube" button. I'm trying to use the Youtube Data API for JavaScript, following this example .
My code is the same as in the example. All was going well until I got an error "MediaUploader is not defined" from this line of code:
var uploader = new MediaUploader({
The MediaUploader class doesn't seem to be defined anywhere in the example code.
I've searched far and wide through Google API docs and JS ref, but the only mention of a MediaUploader class I found is in the context of WordPress, PHP or Python.
Please help - what is MediaUploader in the context of JavaScript/Google API and where can I find documentation on it?
I'm working on a web app, trying to enable sharing a video on Youtube, essentially adding an "Upload to youtube" button. I'm trying to use the Youtube Data API for JavaScript, following this example https://developers.google./youtube/v3/code_samples/javascript#upload_video.
My code is the same as in the example. All was going well until I got an error "MediaUploader is not defined" from this line of code:
var uploader = new MediaUploader({
The MediaUploader class doesn't seem to be defined anywhere in the example code.
I've searched far and wide through Google API docs and JS ref, but the only mention of a MediaUploader class I found is in the context of WordPress, PHP or Python.
Please help - what is MediaUploader in the context of JavaScript/Google API and where can I find documentation on it?
Share Improve this question edited Mar 3, 2015 at 14:08 dmk12 asked Mar 2, 2015 at 20:54 dmk12dmk12 4093 silver badges16 bronze badges 1- had the same problem over here !! – emcas88 Commented Mar 26, 2015 at 16:53
1 Answer
Reset to default 17Ok, got back to this task & finally found the answer. The MediaUploader class is defined in https://github./youtube/api-samples/blob/master/javascript/cors_upload.js.
Dear Google/Youtube docs maintenance people, if you ever read this please add this code sample to the official docs on resumable upload using JavaScript! It will save a world of pain.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743633983a4481838.html
评论列表(0条)