Share YouTube video on Facebook via API - facebook

This is probably not possible, but I'm throwing it out here for anyone with crazy awesome ideas or if they happened to come across some morsel of information about it.
I have an embedded YouTube player (iFrame) using the API, with a custom JS control bar. All that works great.
I want to have a share option, however, since the videos on my site will often appear as overlays, it's not ideal to have the page be shared, but rather the video itself. Is there a way to have a user share the YouTube link directly from my page, rather than just a link to my site?
I already realize the fallback is to create a URL on my site that takes a video id parameter and redirects to the proper youtube page.

Doesn't the embed video from YouTube include all YouTube features by default?
(Thumbs up, share, full screen, etc…)

Related

Share multiple videos on one page onto facebook wall

I have a website where there are multiple videos on a single page and like to add a button to share each video separately onto Facebook wall and be capable of playing each video inside the Facebook timeline.
I understand if there was only one video to share on the page, it is as easy as adding Open Graph tags to the head of the page to make this happen. But this will obviously not work for me since there are multiple videos on the page with share to facebook buttons on each video.
Does anyone know how I can go about making this happen?
Its simple put the Facebook/Twitter/Google/etc buttons onto a separate page and use an iframe to put it on the main page. You can use php to automatically create the "share" pages.
I did it for a site I'm making you can see it here - http://www.lftv.com.br/index.php

What technology Facebook uses for links?

Just wanted to know what technology facebook uses while posting links.
I have noticed that whenever i paste a link on screen, i get the link as a page.
For example,when i paste youtube's link...
it displays as a video and i can play it there only.
Can some one please let me know how it can be done.
what all is needed
What they do is probably to parse the link(regular expressions are useful here), get ID of the movie and embed a player using Youtube API. Here's documentation of the API: https://developers.google.com/youtube/player_parameters

Howto publish an embedded video with Facebook's latest PHP SDK?

I know this question has been rised quite a lot of times, but then they constantly change things at Facebook and none of the numerous ways I've discovered on the web, works for me. Maybe it worked before, but not anymore.
I have a web page with a video playing in our skinned jwplayer. All the og tags are beautifully set, so that when a visitor likes the page, it's title, description, thumb and custom flash player are nicely shared on the users wall. Video even plays right there on the wall, in the embedded and customized flash player. So everything works as expected.
But!.. We would like to auto-post our new posts onto the website's page on Facebook and we want them to look exactly like when they are shared. One would probably expect that it'd be enough to simply post a link through PHP SDK and facebook will do the rest. But it doesn't. It seems to not pay attention at og tags in latter case.
What would be the right way to do this? Is it possible to force facebook to look at og tags? Or how to publish a post with a video in a similar way, but through PHP SDK?
One would probably expect that it'd be enough to simply post a link through PHP SDK and facebook will do the rest. But it doesn't.
What exactly are you posting – just a link, or a post containing a link?
(For difference between the two types of creating a feed object see https://developers.facebook.com/docs/reference/api/user/#posts vs https://developers.facebook.com/docs/reference/api/user/#links)
Is it possible to force facebook to look at og tags?
Normally it does without any further action neccessary.
Have you tried, though, putting your new posts URL through Facebook debugger before posting it?

How do I embed html above the Wall feed on a Page?

I have an audio stream I'd like to include on a Facebook Page, above or at the top of, the wall. Apparently BBC did this (though I can't find the link). Any suggestions on where I should start? I have the html hosted as a Heroku app right now, and can get it to display as a separate link on the Page. But how do I move it from it's own page and onto the Wall?
Thanks much from a FB Developer newbie,
Peter
Peter i believe what you might have seen is actually a page tab, with a feed app included to which they would have developed the feed itself as part of the tab..
tab http://developers.facebook.com/docs/appsonfacebook/pagetabs
if you wish to inlucude a flash movie or audio on the wall itself as a post.
https://developers.facebook.com/docs/opengraph/#audiovideo
if you can find us the link to the page you seen this on it would help alot.
This is not possible, there's no way to embed custom content into a facebook page wall, except via the existing public APIs (none of which will allow auto playing of audio content - this is deliberate)

Embedding open graph video doesn't use video player

I've been in, around, and through a good chunk of the internets looking for an answer to this:
I'm trying to embed a video in Facebook using the og:video tag, but despite the fact that the facebook linter keeps showing 'status: Video embedding on Facebook enabled', when it shows up in my feed, clicking on it always opens a new window instead of showing it in the video player. It does show a little play icon, but it acts like a link rather than a video.
I've tried it with an swf url that works when i hit it, i've tried it with an mp4 video, I've tried https, http, etc. My og tags are pretty much exactly like this example I see at http://ahrengot.com/playground/circular-scrubbing/ (theres a good tutorial at http://ahrengot.com/tutorials/custom-video-player-on-facebook/).
Do I need to associate it with an app (have tried that and just using my user id in fb:admins), and if so, what kind of settings do I need to set to make it show up in a video player? Do I need to set up a canvas url?
I'm using flowplayer.
Thanks for any help.
Edit: it seemed to spontaneously start working after trying for 8 hrs. Does facebook do some kind of testing/caching of the target before it allows the embed?
yes, I'm not sure on how often..but to update facebook's cache of a specific URL, run it through the debugger (formerly URL linter) # http://developers.facebook.com/tools/debug
Might also be SSL related. If you have secure browsing enabled on FB it will launch your video in a new window. The link of the video you are embedding with og:video is using "http" and not "https".