I have a simple application with rails 3 with the FB button. Ive used the FB OG tags to get an image of other relevant information posted during a similar transaction.
when I test my local server and after uploading the lie is laid out with the default image on Facebook and does not include other information from OG tags.
I looked at a few other questions about this, reviewed the instructions of the FB developers on how to use OG tags, and I'm sure I entered them correctly. Wondering if there is another step or something else that I am missing
I have tags in my head, as if
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>my title</title> <meta property="og:title" content="My Site" /> <meta property="og:site_name" content="My Site" /> <meta property="og:url" content="http://www.mysite.com/"/> <meta property="og:image" content="http://www.mysite.com/assets/image.png"/> <meta property="og:type" content="ecommerce"/> <%= stylesheet_link_tag "application", :media => "all" %> <%= favicon_link_tag "/favicon.ico" %> <%= csrf_meta_tags %>
body type
source share