Код: Выделить всё
public static void uploadVideo(String token, String urlVideo) {
FacebookClient fbClient = new DefaultFacebookClient(token, Version.LATEST);
long scheduledTime = System.currentTimeMillis() / 1000 + 30 * 60;
FacebookType scheduledPostResponse = fbClient.publish("me/videos", FacebookType.class,
Parameter.with("file_url", urlVideo),
Parameter.with("published", false),
Parameter.with("scheduled_publish_time", scheduledTime));
Я настроил режим разработки приложений
Подробнее здесь: https://stackoverflow.com/questions/786 ... blish-time