我似乎在上传视频或使用youtube API执行任何操作时遇到问题。它似乎总是给我一个500错误的chrome和Firefox上的空白页面。这真让我烦恼,因为我已正确输入所有内容。我的PHP代码如下。谢谢!
private static final ScheduledExecutorService worker =
Executors.newSingleThreadScheduledExecutor();
public void changeImage(){
for(int i=0;i<3;i++) {
Runnable task = new Runnable() {
public void run() {
Picasso.with(c)
.load(arrPic.get(i))
.resize(300, 300)
.skipMemoryCache()
.into(iv)
}
};
worker.schedule(task, 5*i, TimeUnit.SECONDS);
}
}
答案 0 :(得分:0)
您无法仅使用
上传视频https://www.googleapis.com/auth/youtube
您必须使用以下内容。
https://www.googleapis.com/auth/youtube.upload
https://www.googleapis.com/auth/youtube
https://www.googleapis.com/auth/youtubepartner
https://www.googleapis.com/auth/youtube.force-ssl