YouTubeService を使用して YouTube に接続し、動画をアップロードしようとしましたが、YouTubeService(Client_ID,Developer_Code) に到達すると既にクラッシュしています
このトピックからいくつかのコードを取得しました: YouTube、Android にアップロードするとビデオが回転します
YouTubeService service = new YouTubeService(Client_ID,Developer_key);
try{
service.setUserCredentials("bla@bla.com", "test1234");
} catch (AuthenticationException ex){
Log.e("AuthenticationError",":"+ex.getMessage());
return;
}
製品ダッシュボードから開発者キーを取得しましたが、クライアント ID が何であるかはよくわかりません (好きな文字列にできるとどこかで読んだことがありますが、製品ダッシュボードからアプリケーション名を選択しました)。
コードの残りの部分:
File videoFile = new File(mSharedPreferences.getString("output_file", ""));
if(!videoFile.exists()){
Log.e("FileUploadErr","FileNotFound");
return;
}
String mimeType = "video/*";
String videoTitle = "name";
VideoEntry newEntry = new VideoEntry();
YouTubeMediaGroup mg = newEntry.getOrCreateMediaGroup();
mg.addCategory(new MediaCategory(YouTubeNamespace.CATEGORY_SCHEME,"Travel"));
mg.setTitle(new MediaTitle());
mg.getTitle().setPlainTextContent(videoTitle);
mg.setKeywords(new MediaKeywords());
mg.getKeywords().addKeyword("Travel");
mg.setDescription(new MediaDescription());
mg.getDescription().setPlainTextContent(videoTitle);
MediaFileSource ms = new MediaFileSource(videoFile,mimeType);
newEntry.setMediaSource(ms);
try{
VideoEntry createdEntry = service.insert(new URL("http://uploads.gdata.youtube.com/feeds/api/users/default/uploads"), newEntry);
} catch(ServiceException se){
Log.e("UploadVideo",":" + se.getMessage());
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
エラーは次のとおりです。
02-12 15:31:29.492: E/AndroidRuntime(10012): FATAL EXCEPTION: main
02-12 15:31:29.492: E/AndroidRuntime(10012): java.lang.IllegalStateException: Could not execute method of the activity
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.view.View$1.onClick(View.java:2336)
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.view.View.performClick(View.java:2731)
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.view.View$PerformClick.run(View.java:9387)
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.os.Handler.handleCallback(Handler.java:587)
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.os.Handler.dispatchMessage(Handler.java:92)
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.os.Looper.loop(Looper.java:130)
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.app.ActivityThread.main(ActivityThread.java:3694)
02-12 15:31:29.492: E/AndroidRuntime(10012): at java.lang.reflect.Method.invokeNative(Native Method)
02-12 15:31:29.492: E/AndroidRuntime(10012): at java.lang.reflect.Method.invoke(Method.java:507)
02-12 15:31:29.492: E/AndroidRuntime(10012): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
02-12 15:31:29.492: E/AndroidRuntime(10012): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
02-12 15:31:29.492: E/AndroidRuntime(10012): at dalvik.system.NativeStart.main(Native Method)
02-12 15:31:29.492: E/AndroidRuntime(10012): Caused by: java.lang.reflect.InvocationTargetException
02-12 15:31:29.492: E/AndroidRuntime(10012): at java.lang.reflect.Method.invokeNative(Native Method)
02-12 15:31:29.492: E/AndroidRuntime(10012): at java.lang.reflect.Method.invoke(Method.java:507)
02-12 15:31:29.492: E/AndroidRuntime(10012): at android.view.View$1.onClick(View.java:2331)
02-12 15:31:29.492: E/AndroidRuntime(10012): ... 11 more
02-12 15:31:29.492: E/AndroidRuntime(10012): Caused by: java.lang.VerifyError: com.google.gdata.client.media.MediaService
02-12 15:31:29.492: E/AndroidRuntime(10012): at com.atino.bla.ytUpload.uploadToYoutube(ytUpload.java:111)
02-12 15:31:29.492: E/AndroidRuntime(10012): at com.atino.bla.ytUpload.testMethode(ytUpload.java:58)
02-12 15:31:29.492: E/AndroidRuntime(10012): ... 14 more
この問題を解決する方法を知っている人はいますか?