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 created that is hosted on my home site, and included on 3 individual sites via IFrame. After the poll is completed, we would like to give pollers the ability to share their results via Facebook online. The Facebook share requires meta tags to manipulate the title and description. What would be the best way to complete this objective?

share|improve this question

1 Answer

up vote 0 down vote accepted

why you dont use the stream.publish method of JSDK?

      FB.ui({
method: 'stream.publish',
message:'your result description',
attachment: {
  name: title,

  caption: "My Result",
  media: [{
    type: 'image',
    href: 'http://www.example.com/',
    src: 'http://www.example/images/working.jpeg'
  }]
},
action_links: [{
  text: 'Join the Run',
  href: 'http://www.example.com/'
}],
user_message_prompt: 'Tell your friends about Get your percentage:'

});

I think this is also a good way to share with friends.

share|improve this answer

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.