It looks like Facebook Share's plugin fails when I'm on localhost:3000, even though I have it set up as a URL on my app settings.
First, a screenshot of my app settings:
And the code I have in the Head:
<head>
<meta property="fb:app_id" content="<%= Rails.application.secrets.facebook_app_id %>"></meta>
<meta property="og:site_name" content="<%=Rails.application.config.app_name %>"></meta>
<meta property="og:url" content="<%= request.original_url %>"></meta>
<meta property="og:type" content="website"></meta>
<meta property="og:title" content="<%= @user.fb_name %> is doing something"></meta>
<meta property="og:description" content="this website is awesome!"></meta>
</head>
Finally, here is the plugin html code:
<div class = "row fb_share">
<div class="fb-like medium-12 columns" data-href="<%= request.original_url %>" data-layout="button_count" data-action="like" data-show-faces="true" data-share="true"></div>
</div>
And a screenshot of the share pop-up I get:
Any ideas on why this is failing? have Facebook terms for localhost testing changed in 2015?