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 have many photos on the page and I'd like to add like buttons to them, so I created a page photo.php?id=x and link like buttons to it with different variabiles. But fb removes all variabiles after posting! About 1 year ago it was working, but now I can`t add variabiles in link to share.

There is another way to share the page with different ID?

echo '<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fportovenere.a-turist.com%2F'.$curfolder.'photo.php%3Fid%3D'.$row["id"].'&amp;send=false&amp;layout=button_count&amp;width=450&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>';

P.S.:

$curfolder="ru/"
id = 1-5 for test

or

echo '<div class="fb-like" data-href="http://www.portovenere.a-turist.com/'.$curfolder.'photo.php?id='.$row["id"].'" data-send="false" data-layout="button_count" data-width="150" data-show-faces="true"></div>';

with this one: it share a page with variabiles but doesn`t pick up info (photo, title)

or old sharer:

echo '<a target="_blank" rel="nofollow" href="http://www.facebook.com/sharer/sharer.php?u=http://portovenere.a-turist.com/'.$curfolder.'photo.php?id='.$row["id"].'"><img style="margin-bottom:25px;" src="/images/fb_share_img.png"></a>';
share|improve this question
Can you post the code you are using, what is the url you're giving to the like button? – Nitzan Tomer Jul 1 '12 at 8:23
edited my post :) – Женя Тест Jul 1 '12 at 8:29
Make sure that your url is url-encoded and that the facebook parts are not. It seems like you kind of confused things with the encoding. – Nitzan Tomer Jul 1 '12 at 8:54
Sorry what do you mean? I tried to insert link: <..>/like.php?href=portovenere.a-turist.com/ru/…; it doesn`t help – Женя Тест Jul 1 '12 at 8:59
Try to take a url of your for testing (full url) and use this URL Decoder/Encoder. Put the url in the textarea and click the Encode button, take the result and put it in the like button and see if it works. – Nitzan Tomer Jul 1 '12 at 9:03
show 4 more comments

1 Answer

up vote 0 down vote accepted

I think that your problem is with the og:url meta tag.

Check out what the debug tool says about your url:

Fetched URL: http://portovenere.a-turist.com/photo_galery.php?id=4
Canonical URL: http://www.portovenere.a-turist.com/photo_galery.php

I believe that if you fix that and return the same url for the og:url it will behave as you want it.

share|improve this answer
Thank you! It works with old sharer, so I use it... Like button doesn`t work for the moment, but some problems was there. Will test it now more:) – Женя Тест Jul 1 '12 at 10:20

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.