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.

addthis widget doesn't seem to integrate well with Facebook when it comes to customizing its share message.

When I try to set title and description via addthis.update, i.e:

addthis.update('share', 'description', "Content to be shared" ); 

Everything works perfectly with Twitter, but Facebook is a no show, neither the template nor description/ title are being set. Using addthis:description inline attributes doesn't work either.

Also tried using meta tags without success, as suggested on Addthis Facebook description and title

Did anyone manage to sucessfully customize sharing with Facebook?

share|improve this question
Can you provide a link to your page where it's not working? – Sol Oct 17 '12 at 1:36
Hi Sol, here is an example – Gregory M Oct 19 '12 at 16:20

1 Answer

Try this:

for(var i = 0; i < addthis.links.length; i++){
   addthis.links[i].share.description = "new description";
}

That's raw access to addthis share objets properties.

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.