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 implement the facebook 'like' button my site, but I'm having a problem when my URL has an "&" in it. I have tried using htmlentities, as well as urlencode (which is the closest to working, but not quite).

I have a url like: example.com/entry.php?id=1&refer=abc, and I url encode the entire thing for the href for the iframe for the social plugin button, which becomes: example.com%2Fentry.php%3Fid%3D1%26refer%3Dabc

Now, when I load the page with this like button, and click "like" it shows me the correct url "example.com/entry.php?id=1&refer=abc" but then it says Error next to it, click the error message and I get this error:

The page at example/entry.php?id=1&refer=abc could not be reached.

So for some reason it is interpreting the & as an &amp, how does this make any sense?

Thoughts?

share|improve this question
2  
Consider accepting answers for your questions! – ifaour Mar 14 '11 at 22:31
I didn't realize that you had to press the checkmark to accept answers, I thought clicking the Up arrow was good enough. I accepted answers to all of my asked questions now. – Nikhil Mar 15 '11 at 0:48

1 Answer

up vote 1 down vote accepted

What I would do is use the XFBML version and make use of the Open Graph Meta Tags so that you set the url in the og:url meta tag and leave the href empty!

When all is done, run link over the URL Linter to clear the Facebook cache.

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.