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 using the facebook like button on a facebook app page. When a user likes a page only the url is posted to their wall.

I have tried the following

<meta property="og:title" content="my content" />
<meta property="og:image" content="my content"/>
<meta property="og:description" content="my content">
<meta property="og:type" content="product">
<meta property="og:url" content="my content">
<meta property="og:site_name" content="my content">
<meta property="fb:app_id " content="APPID">

alongside

    <meta name="title" content="mycontent" />
    <meta name="description" content="mycontent" />
    <link rel="image_src" type="image/jpeg" href="mycontent"/>

The app is written is rails. Has any one got a solution to this.

share|improve this question
is <meta property="og:image" content="my content"/> a fully qualified URL? or is it a relative url? – Jesse Wolgamott Jul 17 '12 at 18:51
Fully qualified it be... – Jon Day Jul 17 '12 at 18:55
accessible without authentication? – Jesse Wolgamott Jul 17 '12 at 19:16
Indeed it is accessible – Jon Day Jul 17 '12 at 19:32
Works for me! You should provide an example or more details to get help. – Jesse Wolgamott Jul 17 '12 at 22:53

1 Answer

Don't forget the Open Graph namespace:

<!DOCTYPE html>
<html xmlns:fb="http://ogp.me/ns/fb#" lang="en" style="overflow:hidden;">
    <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# <?php echo AppInfo::appNamespace(); ?>: http://ogp.me/ns/fb/<?php echo AppInfo::appNamespace(); ?>#">
        ...

Use the Facebook Open Graph Debugger to check your site.

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.