I'm pretty sure the meta tags and Send button code are fine. I'll show that code below anyways but I'm pretty sure the code is correct.
Here's what I think my problem stems from:
1) I have a FB 'Send' button on a page in my site called landing_page.php
2) I therefore specify
<meta property="og:url" content="http://www.oursite.com/landing_page.php"/>
for the 'url' meta tag for the page.
3) When I go to https://developers.facebook.com/tools/debug -- and then type in my page URL of http://www.oursite.com/landing_page.php --- I get an error msg.:
Error Parsing URL: Error parsing input URL, no data was scraped.
So my question is -- must I put the Send button ONLY on the index.php page?
I thought I could put the Send button on ANY page as long as I put the meta tags and Send button code on that page. But the Facebook debugger complains
Error Parsing URL: Error parsing input URL, no data was scraped.
if I put the Send button and associated code on 'anypage.php' and try to use it -- the Send box that appears picks up NONE of my OG meta tags (see below) and the Facebook debugger cannot 'scrape' an arbitrary page in my site.
Must I put the Send button ONLY on the index.php page? Or what do I need to change so the Send button on landing_page.php works and shows my OG meta tag settings??
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<meta property="og:url" content="http://www.oursite.com/landing_page.php"/>
<meta property="og:title" content="Wow cool title!"/>
<meta property="og:image" content="http://www.oursite.com/images/logo.png"/>
<meta property="og:description" content="Hey -- SUPER-COOL!!"/>
etc.
</head>
<body>
<div id="fb-root"></div>
<script>
(function(d, s, id)
{
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}
(document, 'script', 'facebook-jssdk'));
</script>
<div class="fb-send" data-href="http://www.oursite.com"></div>