JZ.
JZ.

Reputation: 21877

facebook send button returned status code 200

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.

enter image description here

enter image description here

Have you ever seen this? This doesn't even make sense: a status code 200 is - OK.

Upvotes: 2

Views: 2717

Answers (1)

JZ.
JZ.

Reputation: 21877

Solved the problem:

This is related to URLs that redirect. The like button supports them, the share button does not.

Upvotes: 3

Related Questions