How does facebook's Share a link feature work? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:06:29Z http://stackoverflow.com/feeds/question/477899 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/477899/how-does-facebooks-share-a-link-feature-work 1 How does facebook's Share a link feature work? humanzz 2009-01-25T16:33:46Z 2009-01-27T18:56:26Z <p>I'm trying to implement a feature like that where a user inputs a url and when displaying that url I want to have a custom display (an embed object if it's a video from youtube, a thumbnail if it's an image link, title and excerpt of body if it's a normal link).</p> <p>How can such a feature be realized?</p> http://stackoverflow.com/questions/477899/how-does-facebooks-share-a-link-feature-work/477937#477937 0 Answer by Juri for How does facebook's Share a link feature work? Juri 2009-01-25T17:08:40Z 2009-01-25T17:08:40Z <p>I guess you have to construct it by yourself by manually parsing the kind of URL you get. If it is an image url, well then you just have to rescale it and in case the user clicks on it, then handle that by opening the original one somehow.</p> <p>If it is a link to some youtube video, then you have to take a look at how the embedding of Youtube videos works. You can just copy the code that is provided by Youtube itself, and then exchange the parts with the URL to the video with the URL you got from your user.</p> <p>I did never implement something like that, but I assume it should work somehow like this.</p> <p>Greets, Juri <a href="http://blog.js-development.com" rel="nofollow">http://blog.js-development.com</a></p> http://stackoverflow.com/questions/477899/how-does-facebooks-share-a-link-feature-work/477940#477940 4 Answer by Rich Bradshaw for How does facebook's Share a link feature work? Rich Bradshaw 2009-01-25T17:14:11Z 2009-01-25T17:14:11Z <p>There is a new idea called oEmbed that a few sites support (Flickr, Vimeo and a few others) that addresses this problem. <a href="http://oembed.com/" rel="nofollow">oEmbed site</a></p> <p>Otherwise, just check the site against a list of ones you pick and then pull out the relevant bits to construct an embed link.</p> http://stackoverflow.com/questions/477899/how-does-facebooks-share-a-link-feature-work/484715#484715 1 Answer by humanzz for How does facebook's Share a link feature work? humanzz 2009-01-27T18:56:26Z 2009-01-27T18:56:26Z <p>I liked the idea of oEmbed a lot but unfortunately it doesn't has that much adoption yet. oohEmbed tries to solve this issue by building oEmbed for many websites.</p> <p>For the feature to work, it needs the server's interaction where I believe the following scenario is how it works</p> <p>Assume that we have the site humanzz.com and that it provides such feature</p> <ol> <li>A user enters a url on the humanzz.com's webpage and presses a button like facebooks' preview button</li> <li>An AJAX call is made to a dedicated page on humanzz.com</li> <li>humanzz.com does calls the remote website and gets its data</li> <li>The AJAX call now returns the page's data (oEmbed JSON object)</li> </ol> <p>This involves so much server's overhead.</p> <p>I really wanted to do it using JavaScript as the server's role was only to bypass "Same Origin Policy"'s restrictions.</p> <p>oohEmbed allows bypassing the server's step by specifying a callback parameter to oohEmbed so that the JSON object returned is passed to a callback function on your page. An example illustrating this is as follows</p> <p>Add a script tag dynamically to your page</p> <p>&lt; script type="text/javascript" src="http://oohembed.com/oohembed/?url=http%3A//www.amazon.com/Myths-Innovation-Scott-Berkun/dp/0596527055/<strong>&amp;callback=myCallBack</strong>">&lt; /script></p> <p>This would result in executing myCallback(oEmbedJSONObject) which is great.</p> <p>The problem with that solution is you still have to have a fallback for websites that don't have oEmbed representations.</p>