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.

I use Facebook SDK 3.0. And try to upload video to Facebook. My video uploads if I use:

request = Request.newUploadVideoRequest(session, new File(
                    dataPath), callback);

How is it possible to set the title? Could anyone help me?

share|improve this question
I am sure there are webservices for it. Havn't you researched enough ? – Siddharth Jan 31 at 7:34
Yes, I have. And I've tried like here stackoverflow.com/questions/13083419/… but for video. And I got (#353) Missing video file. But without setting parameters everything is ok. – Yuliya Tarasenko Jan 31 at 7:50
No, I haven't. I haven't heard about it. Thank you, I'll try. – Yuliya Tarasenko Jan 31 at 8:04
Please consider upvote and accepting my answer. – Siddharth Jan 31 at 8:07

2 Answers

up vote 1 down vote accepted

Try this (after you create the request):

Bundle params = request.getParameters();
params.putString("title", yourTitle);
params.putString("description", yourDescription);
// you may need to do a request.setParameters(params); 
request.executeAsync();
share|improve this answer
Thank you! This works for me :) – Yuliya Tarasenko Feb 1 at 5:31

Ideally for webservices work, you must use a tool like fiddler (http://www.fiddler2.com/fiddler2/version.asp). Once you identify the webservices that you need and their return values, you can start with code. Dont do the other way around, a lot more unnecessary work.

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.