1

YouTube アカウントにファイルをアップロードしようとしていますが、どういうわけか機能しません。どんな助けでも大歓迎です。

これが私のコードです:

public class YouTubeUploadService {
      String apiKey = "real-dev-api-key";
      String uName = "user_name";
      String uPassword= "user_password";
      public static void uploadVideo() throws Exception{

    YouTubeService service2 = new YouTubeService("olala", apiKey);

    try {
          service2.setUserCredentials("uName", "uPassword");
        } catch (AuthenticationException e) {
          System.out.println("Invalid login credentials.");
          System.exit(1);
        }

    System.out.println(service2.getVersion());
    UserProfileEntry userProfileEntry = service2.getEntry(new URL(profileUrl), UserProfileEntry.class);
    System.out.println(userProfileEntry.getAge());
    VideoEntry newEntry = new VideoEntry();

    YouTubeMediaGroup mg = newEntry.getOrCreateMediaGroup();
    mg.setTitle(new MediaTitle());
    mg.getTitle().setPlainTextContent("My Test Movie");
    mg.addCategory(new MediaCategory(YouTubeNamespace.CATEGORY_SCHEME, "Autos"));
    mg.setKeywords(new MediaKeywords());
    mg.getKeywords().addKeyword("key word 1");
    mg.getKeywords().addKeyword("key word 2");
    mg.setDescription(new MediaDescription());
    mg.getDescription().setPlainTextContent("plain text");
    mg.setPrivate(false);
    mg.addCategory(new MediaCategory(YouTubeNamespace.DEVELOPER_TAG_SCHEME, "tag scheme1 "));
    mg.addCategory(new MediaCategory(YouTubeNamespace.DEVELOPER_TAG_SCHEME, "tag scheme 2"));
    newEntry.setGeoCoordinates(new GeoRssWhere(37.0,-122.0));
    newEntry.setLocation("Mountain View, CA");
    MediaFileSource ms = new MediaFileSource(new File("Wildlife.wmv"), "video/quicktime");
    newEntry.setMediaSource(ms);
    String uploadUrl = "https://uploads.gdata.youtube.com/feeds/api/users/default/uploads";

    System.out.println("Uploading");
    VideoEntry createdEntry = service2.insert(new URL(uploadUrl), newEntry);
    createdEntry.update();

    System.out.println("Done ---- Uploading");
}
}

このコードを実行すると、次のようになります。

Exception in thread "main" com.google.gdata.util.ServiceForbiddenException: Developer key required for this operation

この操作にはGData ServiceForbiddenExceptionDeveloper キーが必要です

at com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:605)
at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:564)
at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:560)
at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:538)
at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:536)
at com.google.gdata.client.media.MediaService.insert(MediaService.java:400)
...

コード "service2.setUserCredentials("uName", "uPassword");" で try{} catch ブロックを削除すると、次のエラーが表示されます。

Exception in thread "main" com.google.gdata.util.AuthenticationException: Unauthorized
at com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:608)
at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:564)
at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:560)
at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:538)
at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:536)
at com.google.gdata.client.media.MediaService.insert(MediaService.java:400)...

ここで何が欠けていますか?このコードは Google ドキュメントから取得しました。どこかで自分のアカウントへのアクセスを許可する必要がありますか? もしそうなら、私はGoogleドキュメントでそれを見つけることができないので、その方法を説明してください.

4

1 に答える 1

0

コメントで述べたように、プロパティの値 String apiKey = "real-dev-api-key" を間違った方法で設定していました。これは修正され、すべてが機能するようになりました。

于 2012-05-14T08:53:55.083 に答える