Not available to navigate to the page that has HTML component with codes
I have used the javascript and html to let users to upload videos to youtube.
However, when I try to navigate to that page at service success, its not available.
You may want to check out the code in the html component (I've put the javascript together in the component)
code
<p><!doctype html>YouTube API Uploads</p>
<script type="text/javascript">/ <![CDATA[
/*
Copyright 2015 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
var signinCallback = function (result) {
if (result.access_token) {
var uploadVideo = new UploadVideo();
uploadVideo.ready(result.access_token);
}
};
var STATUS_POLLING_INTERVAL_MILLIS = 60 * 1000; // One minute.
/**
YouTube video uploader class
*@constructor
*/
var UploadVideo = function () {
/**The array of tags for the new YouTube video.
*@attribute tags
@type Array.<string>
@default ['google-cors-upload']
*/
this.tags = ['youtube-cors-upload'];/**
The numeric YouTube
[category id](https://developers.google.com/apis-explorer/#p/youtube/v3/youtube.videoCategories.list?part=snippet®ionCode=us).
*@attribute categoryId
@type number
@default 22
*/
this.categoryId = 22;/**
The id of the new video.
*@attribute videoId
@type string
@default ''
*/
this.videoId = '';this.uploadStartTime = 0;
};
UploadVideo.prototype.ready = function (accessToken) {
this.accessToken = accessToken;
this.gapi = gapi;
this.authenticated = true;
this.gapi.client.request({
path: '/youtube/v3/channels',
params: {
part: 'snippet',
mine: true
},
callback: function (response) {
if (response.error) {
console.log(response.error.message);
} else {
$('#channel-name').text(response.items[0].snippet.title);
$('#channel-thumbnail').attr('src', response.items[0].snippet.thumbnails.
default.url);Code: Select all
$('.pre-sign-in').hide(); $('.post-sign-in').show(); } }.bind(this)
});
$('#button').on("click", this.handleUploadClicked.bind(this));
};
/**
- Uploads a video file to YouTube.
* - @method uploadFile
- @param {object} file File object corresponding to the video to upload.
*/
UploadVideo.prototype.uploadFile = function (file) {
var metadata = {
snippet: {
title: $('#title').val(),
description: $('#description').text(),
tags: this.tags,
categoryId: this.categoryId
},
status: {
privacyStatus: $('#privacy-status option:selected').text()
}
};
var uploader = new MediaUploader({
baseUrl: 'https://www.googleapis.com/upload/youtube/v3/videos',
file: file,
token: this.accessToken,
metadata: metadata,
params: {
part: Object.keys(metadata).join(',')
},
onError: function (data) {
var message = data;
// Assuming the error is raised by the YouTube API, data will be
// a JSON string with error.message set. That may not be the
// only time onError will be raised, though.
try {
var errorResponse = JSON.parse(data);
message = errorResponse.error.message;
} finally {
alert(message);
}
}.bind(this),
onProgress: function (data) {
var currentTime = Date.now();
var bytesUploaded = data.loaded;
var totalBytes = data.total;
// The times are in millis, so we need to divide by 1000 to get seconds.
var bytesPerSecond = bytesUploaded / ((currentTime - this.uploadStartTime) / 1000);
var estimatedSecondsRemaining = (totalBytes - bytesUploaded) / bytesPerSecond;
var percentageComplete = (bytesUploaded * 100) / totalBytes;
Code: Select all
$('#upload-progress').attr({ value: bytesUploaded, max: totalBytes }); $('#percent-transferred').text(percentageComplete); $('#bytes-transferred').text(bytesUploaded); $('#total-bytes').text(totalBytes); $('.during-upload').show(); }.bind(this), onComplete: function (data) { var uploadResponse = JSON.parse(data); this.videoId = uploadResponse.id; $('#video-id').text(this.videoId); $('.post-upload').show(); this.pollForVideoStatus(); }.bind(this)
});
// This won't correspond to the exact start of the upload, but it should be close enough.
this.uploadStartTime = Date.now();
uploader.upload();
};
UploadVideo.prototype.handleUploadClicked = function () {
$('#button').attr('disabled', true);
this.uploadFile($('#file').get(0).files[0]);
};
UploadVideo.prototype.pollForVideoStatus = function () {
this.gapi.client.request({
path: '/youtube/v3/videos',
params: {
part: 'status,player',
id: this.videoId
},
callback: function (response) {
if (response.error) {
// The status polling failed.
console.log(response.error.message);
setTimeout(this.pollForVideoStatus.bind(this), STATUS_POLLING_INTERVAL_MILLIS);
} else {
var uploadStatus = response.items[0].status.uploadStatus;
switch (uploadStatus) {
// This is a non-final status, so we need to poll again.
case 'uploaded':
$('#post-upload-status').append('<li>Upload status: ' + uploadStatus + '</li>');
setTimeout(this.pollForVideoStatus.bind(this), STATUS_POLLING_INTERVAL_MILLIS);
break;
// The video was successfully transcoded and is available.
case 'processed':
$('#player').append(response.items[0].player.embedHtml);
$('#post-upload-status').append('<li>Final status.</li>');
break;
// All other statuses indicate a permanent transcoding failure.
default:
$('#post-upload-status').append('<li>Transcoding failed.</li>');
break;
}
}
}.bind(this)
});
};
// ]]></script>
<p><span id="signinButton" class="pre-sign-in"> <!-- IMPORTANT: Replace the value of the <code>data-clientid
attribute in the following tag with your project's client ID. --> </span></p>
<div class="post-sign-in">
<div><img id="channel-thumbnail" alt="" /> <span id="channel-name"></span><>
<div><label for="title">Title:</label> <input id="title" type="text" value="Default Title" /><>
<div><label for="description">Description:</label> <textarea id="description">Default description</textarea><>
<div><label for="privacy-status">Privacy Status:</label><select id="privacy-status">
<option>public</option>
<option>unlisted</option>
<option>private</option>
</select><>
<div><input id="file" class="button" type="file" accept="video/*" /> <button id="button">Upload Video</button>
<div class="during-upload">
<p><span id="percent-transferred"></span>% done (<span id="bytes-transferred"></span>/<span id="total-bytes"></span> bytes)</p>
<>
<div class="post-upload">
<p>Uploaded video with id <span id="video-id"></span>. Polling for status...</p>
<ul id="post-upload-status"></ul>
<div id="player"> <>
<>
<p id="disclaimer">By uploading a video, you certify that you own all rights to the content or that you are authorized by the owner to make the content publicly available on YouTube, and that it otherwise complies with the YouTube Terms of Service located at <a href="http://www.youtube.com/t/terms" target="_blank">http://www.youtube.com/t/terms</a></p>
<>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="http://apis.google.com/js/client:plusone.js"></script>
<script type="text/javascript" src="cors_upload.js"></script>
<script type="text/javascript" src="upload_video.js"></script>
<>
/code