I try to share a link to my website on Facebook but the get parameter is trimmed. I make the share button like this:
<a name="fb_share" type="button" share_url="http://www.site.com/page/?key=4v56dfv456sdfv456s" >Share on facebook</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
The share button is correctly created and shares a link on my wall but the linked shared is only :
http://www.site.com/page/
Where's the ?key=... part? How to get it back?
I used http://developers.facebook.com/tools/debug to see what's going on. In the "Redirect path" section, I have original and canonical URL but it's finally the canonical URL that is shared. How to share the original URL?
Thanks!