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'm trying to add a facebook share button to my page

Here's the code

<a  href="http://www.facebook.com/sharer.php?u=http://www.test.com/default.aspx?S=Facebook&SID=3688"

Now when the share the link of facebook, I lose &SID=3688

Any ideas on why this is happening?

share|improve this question

2 Answers

URL Encode your href value, then you shouldn't "lose" anything.

share|improve this answer
Thanks man, long day! – Nick Jul 22 '11 at 15:44

You should encode this u=http://www.test.com/default.aspx?S=Facebook&SID=3688 because facebook gates value in a same way as your site by using query string.

Feel free to create your own implementation based on this. Make sure you URL encode the u and t parameters -- use the JavaScript function encodeURIComponent(). For example:

http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.sadtrombone.com%2F&t=Sad%20

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.