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.

It all works perfectly, the problem is that one of my pages uses dynamic links.

ex. www.blahblah.com/dynamic?gsgregfdgcvbdg

as opposed to:

www.blahblah.com/dynamic.html


The problem occurs because the page that is liked is never the www.blahblah.com/dynamic.html but always the www.blahblah.com/dynamic?gsgregfdgcvbdg and facebook can 't recognize the tags when it's dynamic like that. Is there a way around this?

here is my code:<meta property="og:title" content="titlename" /> <meta property="og:description" content="desc" /> <meta property="og:image" content="http://www.website.com/Background/Back2012/refImage.png" /> <meta name="medium" content="video" />

share|improve this question

1 Answer

Try setting the og:url tag to point to the permanent URL, without the parameters on the query string. Using this tag should cause the Facebook Like to point to the the og:url value rather than the actual URL with query string parameters.

share|improve this answer
didn't help, I added <meta property="og:url" content="website.com/dynamic.html"; /> – Ali May 11 '12 at 4:12
Also, which version of the like button are you using (HTML / XFBML / iFrame)? These integrations also accept an href parameter, which could be used to point to the desired page without the query string. Refer to https://developers.facebook.com/docs/reference/plugins/like/ for use of the href and og:url parameters. – Rob DiMarco May 11 '12 at 4:17
xfbml, i have it set to default to current page. – Ali May 11 '12 at 4:49

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.