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've implemented Facebook's Open Graph per Ryan Bates' awesome tutorial: http://railscasts.com/episodes/363-facebook-open-graph

However, when Facebook is scraping my site to retrieve the og parameters, it looks like it's asking for JSON format. That's a problem since I'm already using JSON to return data for other purposes. I'm ok returning data for Facebook via format.html. I checked the request object and I see this ACCEPT header:

'HTTP_ACCEPT' */*

However, that's causing my app to execute format.json. I played around with the order of the format responses and it still requests format.json.

respond_with(@project) do |format|
    format.html { render 'show'}
    format.json { render 'show'}
    format.js { render 'show'}
end

Any ideas?

share|improve this question

1 Answer

After a lot of trial and error, I figured out that with an Accept Header of */*, and if you are using respond_with, you'll need to make sure the respond_to at the top of the controller matches the order you want... In my case, this is correct:

class ProjectsController < ApplicationController
  respond_to :html
  respond_to :json
  respond_to :js,
  ...

and this isn't

class ProjectsController < ApplicationController
  respond_to :json
  respond_to :html
  respond_to :js,
  ...
share|improve this answer
Great! This saved me some headaches. – FernandoEscher Apr 30 at 19:27

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.