This is the url that I want the user to be able to share: http://dealsfortherich.com/product/6379316
So my application (PHP) constructs this URL:
https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdealsfortherich.com%2Fproduct%2F6379316
If you check out that link, you will see that the product number has been truncated. Sharer.php is ignoring the number after the slash (%2F) If I make that number alpha-number, it works:
https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdealsfortherich.com%2Fproduct%2F6379316X
or https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdealsfortherich.com%2Fproduct%2FX6379316 or https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdealsfortherich.com%2Fproduct%2F637X9316
Adding the trailing slash doesn't help: https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdealsfortherich.com%2Fproduct%2F6379316%2F
Obviously, I can write a condition in my application to handle a url like: http://dealsfortherich.com/product/6379316X But then I have duplicated content as far as search engines are concerned.
Should I just give up and do it without using sharer.php?
/index.htm
– arttronics