is it possible to modify the follow standard code for posting a facebook feed thru ios to have a youtube clip instead of a picture? Just like one posts a youtube link on his/her wall through the browser where you can click and view the video without leaving the page. I would still like to keep a separate link that is not the youtube video link if possible though.
Tried searching but seems like not much questions asked on posting youtube video through the SDK... Thanks much in advance!
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"http://www.somedomain.com/pic.png", @"picture",
@"http://www.somedomain.com", @"link",
@"Post Name", @"name",
@"Post Caption", @"caption",
@"Message", @"description",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self]