Reputation: 21877
I'm using the facebook social plugin with an embedded ruby url which references: http://www.facebook.com/pages/my_page/my_page_id Specifically, the like button functionality works, but the send button functionality results in an error.
<div class="fb-like" data-href='<%= @fb_url %>' data-send="true" data-colorscheme="dark" data-width="450" data-show-faces="true"></div>
The page at http://www.facebook.com/pages/my_page/my_page_id could not be reached because the server returned status code 200.
Have you ever seen this? This doesn't even make sense: a status code 200 is - OK.
Upvotes: 2
Views: 2717
Reputation: 21877
Solved the problem:
This is related to URLs that redirect. The like button supports them, the share button does not.
Upvotes: 3