So i am trying to get facebook like to post my URL based on og tags for current browser URL like this
<meta property="og:url" content="<?php
$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo $url;
?>"/>
An example of the URL is this
http://ourniteout.com/galleries?g2_itemId=28157
But facebook like breaks it down to this
http://ourniteout.com/galleries
When i use the facebook parser to test the URL it detects the full URL correctly, so i know my og tag is fine .. why is AddThis breaking it down ?
Any help would be greatly appreciated.