I am developing an application for our university staff which synchronizes transcribed text to a valid timed text/ caption file using Youtube Voice synchronizer. I am writing code in java.
So far i have written code to upload video, upload content of text file. So far everything is going good and the close captioning is done for the video without any issues. I am facing issues while downloading the captions.
Authentication i am using for Uploading video and Text is :
YouTubeService service = new YouTubeService("YoutubePersonalUploader", developerKey);
service.setUserCredentials(username, password);
For downloading captions i am not sure how i can use "service" or how i can get current token. So i have written a java code to make http request and tried getting client login token. Now this authentication is not working :(. Here is my code for getting auth token and http request. If there are Youtube Developers may be you can understand my problem.
//Authentication
private static String getAuthToken() throws IOException {
// Send the request
URL url = new URL("https://www.google.com/accounts/ClientLogin");
URLConnection conn = url.openConnection();
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestProperty("Content-Type",
"application/x-www-form-urlencoded");
String body = "Email="
+ URLEncoder.encode("************@gmail.com", "UTF-8")
+ "&Passwd=" + URLEncoder.encode("xxxxxxxxxx", "UTF-8")
+ "&service=" + URLEncoder.encode("cl", "UTF-8") + "&source="
+ URLEncoder.encode("@@@@@@@@@@@@@@", "UTF-8")
+ "&accountType" + URLEncoder.encode("GOOGLE", "UTF-8");
OutputStreamWriter writer = new OutputStreamWriter(
conn.getOutputStream());
// write parameters
writer.write(body);
writer.flush();
// Get the response
StringBuffer answer = new StringBuffer();
BufferedReader reader = new BufferedReader(new InputStreamReader(
conn.getInputStream()));
String line;
String Auth = "";
while ((line = reader.readLine()) != null) {
Auth = "";
answer.append(line);
answer.append("\n");
Auth = line.substring(5);
}
writer.close();
reader.close();
return Auth;
}
//HTTP request to download captions
String DOWNLOAD_URL = "http://gdata.youtube.com/feeds/api/videos/MYVIDEOID/captiondata/CAPTIONTRACKID";
URL url = new URL(DOWNLOAD_URL);
//HttpsURLConnection httpCon = (HttpsURLConnection) url.openConnection();
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
httpCon.setDoOutput(true);
httpCon.setDoInput(true);
httpCon.setRequestMethod("GET");
httpCon.addRequestProperty("Host", "gdata.youtube.com");
httpCon.setRequestProperty("Authorization", auth);
httpCon.setRequestProperty("GData-Version", "2");
httpCon.setRequestProperty("X-GData-Key", developerKey);
httpCon.connect();
StringBuffer answer = new StringBuffer();
BufferedReader reader = new BufferedReader(new InputStreamReader(
httpCon.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
answer.append(line);
answer.append("\n");
}
System.out.print(answer);
reader.close();
Error in console : Exception in thread "main" java.io.IOException: Server returned HTTP response code: 403 for URL: http://gdata.youtube.com/feeds/api/videos/*VIDEOID/captiondata/CAPTIONTRACKID at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source) at DownloadCaps.main(DownloadCaps.java:51)*
