im trying to upload video with RestFB, i tried do this for 2 days, but still cant do it, can somebody help me with this? What i done.
I know that i can upload video with this method video.upload, and i must send request to the facebook video server, so i create class VideoLegacyFacebookClient, and put there this server, also i tried make new execute method, wich take a InputStream binaryAttachement for video, and try to make this code:
InputStream is=new DataInputStream(new FileInputStream(new File("/home/hagen/testing.avi")));
postId = facebookClient.execute("video.upload", null, String.class,is,
Parameter.with("title", "My Test Video"),
Parameter.with("description", "This is description"));
What i do wrong, can someone help me?