YouTube API で「認証の問題」に直面しています。インサイト データの csv ファイル リンクを取得します。これが私のコードです。
package sample.youtube;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import com.google.gdata.client.Query;
import com.google.gdata.client.youtube.YouTubeService;
import com.google.gdata.data.youtube.VideoFeed;
import com.google.gdata.util.ServiceException;
public class CSV_Download {
public static final String UPLOADS_URL = "http://gdata.youtube.com/feeds/api/users/default/uploads";
public static void main(String[] args) {
YouTubeService service = new YouTubeService("insight api", "dev key");
Query query = null;
try {
query = new Query(new URL(UPLOADS_URL));
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
query.setFields("title,entry(title, media:group/media:player)");
VideoFeed videoFeed = null;
try {
videoFeed = service.query(query, VideoFeed.class);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ServiceException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(videoFeed.getTitle() + ":");
System.out.println(" Link : "+videoFeed.getLink("http://gdata.youtube.com/schemas/2007#insight.views", "text/html") + ":");
}
}
私のエラーメッセージ:
com.google.gdata.util.AuthenticationException: ユーザー認証が必要です。ユーザー認証が必要です。
ユーザー認証が必要です。
エラー 401
com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:600) で com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:563) で com.google.gdata.client. .http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:552) com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:530) com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest) .java:535) com.google.gdata.client.Service.getFeed(Service.java:1135) com.google.gdata.client.Service.getFeed(Service.java:1077) com.google.gdata で。 client.GoogleService.getFeed(GoogleService.java:662) at com.google.gdata.client.Service.query(Service.java:1237) at com.google.gdata.client.Service.query(Service.java:1178) sample.youtube.CSV_Download で。main(CSV_Download.java:30) スレッド「main」での例外 java.lang.NullPointerException at sample.youtube.CSV_Download.main(CSV_Download.java:38)
そのため、YouTubeService クライアントを宣言した直後に、次の行をコードに挿入しました。
service.setUserCredentials("email_here", "password_here");
これで認証エラーはなくなり、コードは正常に実行されます。しかし、リンクとして Null を取得しています。YouTube 開発者フォーラムから何の反応も得られませんでした。何が間違っている可能性がありますか?