Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to implement OpenGraph actions and object. It works fine, I am able to create objects and actions in the ticker/Timelime.

My only concern is when you display the object, its title is a link. But it links to the page I use to generate the object, so there is nothing to display :

object.html.erb

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# name_space: http://ogp.me/ns/fb/name_space#">
<meta property="fb:app_id"        content="APP_ID" /> 
<meta property="og:type"          content="name_space:object" /> 
<meta property="og:url"          content="PATH_TO_METHOD_TO_CREATE_OBJECT?img_link=<%= CGI.escape(@img_link)%>&points=<%=@points%>&description=<%= @description%>" /> 
<meta property="og:title"         content="<%= params[:units_offered] %> Points" /> 
<meta property="og:description"   content="<%= params[:description] %>" />
<meta property="og:image"       content="<%= params[:img_link] %>">

if I change the og:url meta tag to the url of my FB page then the object picks my FB page value..

in a perfect I wanted to link to nothing or my FB page.

Any clue ?

Thanks!

share|improve this question

2 Answers

up vote 5 down vote accepted

Since the linter doesn't run javascript, you can do a javascript redirection for the user to go to the place you want.

<script> location.href = 'http://example.com/the_real_page.php'; </script>

This way the linter can still see the correct og meta tags, and the user who clicks the link gets redirected to the correct location.

share|improve this answer
are you making this dynamic also? constructing the url from the passed in parameters? – Zsolt May 21 '12 at 15:01

Add this to the head:

<script type="text/javascript">
    location = 'YOUR_HOME_PAGE';
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.