Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
what is the error/exception? – fmucar Feb 9 '11 at 11:29
Is this an attempt to post a video to your wall? – 8vius Apr 13 '11 at 15:44

2 Answers

RestFB 1.6.5 may fix this problem; http://restfb.googlecode.com/svn/tags/restfb-project-1.6.5/CHANGELOG says:

Added support for the new video upload API endpoint via https://graph-video.facebook.com and fixed a multipart filename bug that broke video uploads.

share|improve this answer

Facebook How-tos about video upload may be useful https://developers.facebook.com/blog/post/493/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.