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've been able to achieve embedding and playback with a YouTube video using loadHTMLString: baseURL:, but despite the fact that I have the correct URL for a Facebook video, I've been unable to reuse the code for Facebook.

Here's what I've got. videoUrl is a link to a FB video:

   NSString *youTubeHTMLTemplate = @"<html><head><style type=\"text/css\">body { background-color: transparent;color: white;}</style></head><body style=\"margin:0\"><embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" width=\"%0.0f\" height=\"%0.0f\"></embed></body></html>";
   NSString *finalHtml = [NSString stringWithFormat:youTubeHTMLTemplate, videoUrl, 320.0, 480.0];
   [self.webView loadHTMLString: finalHtml baseURL:[NSURL URLWithString:@"http://www.youtube.com"]];

I don't see as much discussion about embedding Facebook videos as I do YouTube, so I'm wondering if I'm overcomplicating something, but the same approach worked for YT.

Has anyone been able to accomplish this?

Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.