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 am developing an iPad application in which I need to share a Youtube video link to Facebook. I am using FBStreamDialog for image sharing as follows: But, I do not know how to share the video (I wanted to know about the parameters like media type, src, href etc)

FBStreamDialog* dialog = [[[FBStreamDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.targetId = <facebookUserId?;
dialog.userMessagePrompt = @"What's in your mind?";
dialog.attachment = @"{\"name\":\"Sample Photo\","
                    "\"href\":\"http://abstract.desktopnexus.com/wallpaper/250923\","
                         "\"caption\":\"MyAppName\",\"description\":\"Testing share\","
                         "\"media\":[{\"type\":\"image\","
                         "\"src\":\"http://static.desktopnexus.com/wallpapers/250923-bigthumbnail.jpg\","
                         "\"href\":\"http://abstract.desktopnexus.com/wallpaper/250923\"}],"
                        "\"properties\":{\"another link\":{\"text\":\"Facebook home page\",\"href\":\"http://www.facebook.com\"}}}"

[dialog show];  

Could someone help me? Thanks and Regards, Deepa

share|improve this question

1 Answer

I have explained here all the Facebook Meta tags which are used for sharing. You can have a look at this post, it may be useful.

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.