for tracking purposes, I want that the URL, which appears on the facebook stream after an "like-action", is slightly different from the URL the user actually liked.

Example: I use <link rel="canonical" href="http://example.com/test.html"> in my head section to tell facebook to which URL a like-action on this website refers to.

Further down on the website I have <fb:like href="http://example.com/test.html?param=144141"> with the same URL, just with an additional parameter.

My intention: If someone clicks on the like button, facebook puts him to the "group who like http://example.com/test.html" in order to appear next the like button. But when another user sees his like-action on the facebook stream and clicks on it, he should be redirected to http://example.com/test.html?param=144141.

The problem is that this doesn't work, because the canonical declaration in the head section kind of overwrites the href attribute of my <fb:like> tag. Anyone knows how to solve this problem or does it simply not work?

link|improve this question

57% accept rate
You should accept (check) the answer that answers your question. – Larry K May 19 '11 at 4:14
feedback

2 Answers

up vote 10 down vote accepted

You can't do exactly what you have requested, but you can still add an arbitrary tracking parameter (especially useful for analytics purposes). Facebook recently added a ref parameter to the fb:like element for this purpose. It's up to you to decide how you want to stuff various bits of information into that single parameter and then parse fb_ref whenever it's included in an incoming URLs.

Example

Place the following element on your HTML page:

<fb:like href="http://example.com/test.html" ref="144141"></fb:like>

Users clicking the link from Facebook should be directed to:

http://example.com/test.html?fb_ref=144141&fb_source=home_multiline

Documentation

link|improve this answer
Awesome. That's enough for my purposes. Thank you! – Mr. Omsn Jul 31 '10 at 13:25
feedback

Sup duds,

I see that everything is solved, but wanted to share a different approach.

I was looking for the same functionality but also to work on user shared links, so that when an user shared on their wall "mypage.com/something/" and someone clicked on it, it went to "mypage.com/something/?from=fb" and give him a special treatment because it's coming from Facebook.

That's not possible (per the Facebook API itself) but a quick workaround I've found is to use the javascript:document.referral property.

What do you guys think?

link|improve this answer
1  
This is not a forum. – Guy Nov 30 '11 at 12:46
well "sorry" ... – almosnow Jan 18 at 7:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.