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 found some hints here but neither are good for me. So the problem is, clicking on a Like button the popping window has the right generated link, but on the facebook page, I have only the base url.

OG tags: I cant set og tags because there are hundreds like buttons on the page at the same time.

I also used encodeURIComponents() for the url.

Interestingly, earlier it was working, we observed this problem at the end of 2012, so something FB changed. Code wasn't changed meantime.

Any idea how to get correct urls in the posts?

You can try it out yourself: madarmegfigyeles.hu - click on a bird icon then like (check the full url generated first, and then the post made by fb)

thank you

EDIT: if I hard code an url into the og:url tag, I get a "Circular redirect" error, with a 302 response code.

share|improve this question
If you want to keep receiving help start to accept the answers. – Alexander Nenkov Jan 18 at 12:29
Pardon me, I dont enable answers? How is it possible? – subdesign Jan 18 at 17:02
Your accept rate is 25%. Every time you ask question here and someone provided a correct answer you should accept his answer. That's how the community works. More info here: stackoverflow.com/about – Alexander Nenkov Jan 18 at 17:43
Thanks Alexander, I revised my questions and accepted answers I forgot. – subdesign Jan 20 at 10:20

1 Answer

So the problem is, clicking on a Like button the popping window has the right generated link, but on the facebook page, I have only the base url.

Of course, because all your individual articles(?) redirect to your base URL, as the debug tool clearly shows – and so Facebook takes the latter as the intrinsic URL to like.

If you need this redirect in your app logic when a normal user visits the page – then you have to exempt Facebook’s scraper from it (f.e. via its user agent -> search)

share|improve this answer
Yes, I know it, I have to find why I get 302 error in debugger even if I hardcode an url into the og:url part. Have no clue.. – subdesign Jan 22 at 10:26

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.