Hi I am developing ROR application in which I want to integrate facebook open graph. I successfully create costume action and also set up required environment for integration. Now problem is that when I tried to execute open graph action with there default url like product=http://samples.ogp.me/11111 it works fine. But When I tried to replace that url with my own url it gives me error "error":{"message":"(#3502) Object at URL http://localhost:3000/products/156 has og:type of 'website'. The property 'product' requires an object of og:type 'og_abc:product'.
My action looks like :
action = me.og_action!(
"og_xyz:abc",
:product => 'http://localhost:3000/products/156',
)
I already set my meta properties as per requirement like
<meta property="og:image" content="<%= smo_image %>" />
<meta name="description" content= "<%= page_description %>">
<meta name="keywords" content="abc">
<meta property="fb:app_id" content="<%= ENV['FB_KEY']%>">
<meta property="og:site_name" content="abc">
<meta property="og:type" content="og_abc:product">
<meta property="og:url" content="<%= smo_url %>">
<meta property="og:description" content="<%= page_description %>" />
I know that facebook will try to parse that url page and then gives me replay. Is it because I am using localhost url and facebook is not able to get that url page? I also tried my url in facebook debug tool and it gives me error Error Parsing URL:Error parsing input URL, no data was scraped. So is there any way to handle this problem.
Need Help... Thank you...