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.

There's a quiz on project site where you answer some questions and based on answers get a result. The result differs from time to time, but client demands, that the result (custom message) should be able to be shared on facebook.

All I want to do is share the url to the quiz with a custom message, ie: 'I answered 6 out of 10 questions in quiz about History, what about you?', but yes, Like button doesn't do it, share button is kind of dead and have no idea about other solutions.

How could I achieve this?

Thanks in advance!

update

Seriously... There is no way to perform such a simple task?

share|improve this question

2 Answers

up vote 7 down vote accepted

As of March 2012 I found a reliable soultion here: http://www.daddydesign.com/wordpress/how-to-create-a-custom-facebook-share-button-for-your-iframe-tab/

I used jQuery to help setup my link like so:

// create your custom message and grab existing meta data from OG tags
var brag = 'I scored '+ countCorrect +' out of '+ totalQuestions,
    head = $( document.getElementsByTagName('head')[0] ),
    fbTitle = head.find('meta[property=og\\:title]').attr('content'),  // dbl escaping for javascript
    fbDesc = head.find('meta[property=og\\:description]').attr('content'),
    fbURL = head.find('meta[property=og\\:url]').attr('content'),
    fbImage = head.find('meta[property=og\\:image]').attr('content');

var fbLink = 'http://www.facebook.com/sharer.php?s=100&'+
    'p[title]='+ encodeURIComponent( brag +' | '+ fbTitle ) +'&'+
    'p[summary]='+ encodeURIComponent( fbDesc ) +'&'+
    'p[url]='+ encodeURIComponent( fbURL ) +'&'+
    'p[images][0]='+ encodeURIComponent( fbImage );

// onClick event    
var fbClick = "window.open('"+ fbLink +"','sharer','toolbar=0,status=0,width=548,height=325');";
share|improve this answer
Fancy! Cannot test it, but in theory it should nail it. +1, thanks for share. – psycketom Mar 11 '12 at 5:51
Changed accepted answer to this one, because previous does not seem to be working anymore. – psycketom Oct 9 '12 at 13:43
Has anybody had any problems with this solution. It's not in the facebook-documentation, so I'm thinking that maybe you can get penalized for using it. – Kristoffer Nolgren Dec 5 '12 at 8:55

What about Feed dialog ?

Direct users to this link to get a sharer-like dialog:

http://www.facebook.com/dialog/feed?
  app_id=123050457758183&
  link=http://developers.facebook.com/docs/reference/dialogs/&
  picture=http://fbrell.com/f8.jpg&
  name=Facebook%20Dialogs&
  caption=Reference%20Documentation&
  description=Dialogs%20provide%20a%20simple,%20consistent%20interface%20for%20applications%20to%20interact%20with%20users.&
  message=Facebook%20Dialogs%20are%20so%20easy!&
  redirect_uri=http://www.example.com/response
share|improve this answer
Huh, any chance of doing it the "no application" way? – psycketom May 16 '11 at 5:44
Okay, looks like this is it, probably even the only way. – psycketom May 16 '11 at 16:49
what is the app id? – cV2 Aug 11 '11 at 12:08
cV2: you need to create a Facebook app here: developers.facebook.com/apps and you'll get the app_id to use. – Soufiane Hassou Aug 11 '11 at 17:08
4  
@Tim Seconded. Message no longer appears to be populated... – Endophage Jan 4 '12 at 23:40
show 1 more comment

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.