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'm using Rails to try and add an action for an object both defined for my app on the open graph. I am using an :after_filter in my controller to call the following after session#create:

@graph.put_connections('me', 'workkout:complete', :session => url_for([@plan, @session]))

I am getting the following back from Facebook:

{"error":{"type":"Exception","message":"Could not retrieve data from URL.","code":1660002}}

I have checked that the correct URL is passed to put_connections, and when I visit this URL using Facebook's Lint tool, everything is correct.

I can't understand why this isn't working, my only thought is that Facebook is hitting the URL moments before rails has generated the object? - not sure if that's even possible though.

Can anyone shed any light on this?

share|improve this question
I tried passing a fixed string as the URL and this works, so it must be that facebook hits the url before the model is created.. I'm doing this within if @session.save - yet it still doesn't seem to work? – Fred Jul 7 '12 at 16:11
Aside: workkout => typo? – Zabba Jul 7 '12 at 18:16
hah, no, it's my app name ;) – Fred Jul 7 '12 at 19:45
Are you running this in production? Do you have an example URL that Facebook has trouble with? – Tom Waddington Jul 7 '12 at 23:48
This is an example of what I'm sending, it looks fine in the lint tool - workkout.herokuapp.com/plans/1/sessions/18 – Fred Jul 10 '12 at 12:09

1 Answer

up vote 0 down vote accepted

Turns out it was because the create action and the put_connection methods take place in independent threads and as such the URL is not ready when put_connections is called. Solution here http://railscasts.com/episodes/363-facebook-open-graph?autoplay=true

share|improve this answer

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.