Here is the scenario:
Site A - has the open graph tags and when a user hits the page a frictionless timeline post is made. Then, when a person clicks on that post I want to direct them to Site B.
I've already figured out how to make successful posts to timeline from Site A.
Any ideas on how I can force a different URL for the title, image, etc from the site a post was made?
OG Meta Tags:
<meta property="fb:app_id" content="<%= @graph.fbappid %>"/>
<meta property="og:type" content="<%= @graph.ogtype %>"/>
<meta property="og:title" content="<%= @graph.ogtitle %>"/>
<meta property="og:description" content="<%= @graph.ogdesc %>"/>
**<meta property="og:url" content="<%= @graph.ogurl %>"/>**
<meta property="og:image" content="<%= @graph.ogimage %>"/>
<meta property="video:actor" content="<%= @graph.ogactor %>" />
The og:url
references the page from which a post is made. However, I want the user to be directed to a different page when the click on the post.