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.

After a long task (14s and can be more with more than 600 call to Facebook) my app returns a 500 internal server error with the following description:

Koala::Facebook::APIError (GraphMethodException: Unsupported get request.) 

What I do is something like this:

@FBGraph = Koala::Facebook::API.new
tud = MyUsers.all
tud.each do |user|

    graph = @FBGraph.get_object(user.fb_user_id)
    picture = @FBGraph.get_picture(user.fb_user_id)
    thisTud = MyUsers.find(user.id)
    thisTud.name = graph["name"]
    thisTud.url = graph["link"]
    thisTud.url_pic = picture

    if thisTud.save
        puts "Saved!"
    else
        puts "Error"
    end
end

I receive (on the terminal) all the "Saved!", but after retrieving the data, it does automatically the mysql operations and it fails. And the data is not saved on the DB.

As suggested in this post I have placed the @FBGraph = Koala::Facebook::API.new in a new Thread, but nothing changes.

Note: when I'd do the same operations with less users, all was working good.

share|improve this question
1  
there's a bug developers.facebook.com/bugs/160155304123891. Less users just lower the probability to have that error i guess. – hellvinz Dec 5 '12 at 18:29
thanks, you have right. Meanwhile I have find a workaround solution. – damoiser Dec 5 '12 at 22:18

1 Answer

up vote 1 down vote accepted

How hellvinz says is a facebook bug.

I have find a workaround for now that seems that works:

change this

graph = @FBGraph.get_object(user.fb_user_id)

to this

graph = @FBGraph.get_object("#{user.fb_user_id}?fields=id,name,username,picture,link")

Explicitly declaring the fields seems that solve the problem.

And if this is not sufficient there are 2 more tricks that can resolve the problem:

  1. Calling again after a time delay (for example after an hour), and calling only the requests incomplete
  2. Creating multiple fb app ID and accounts differentiating the requests with the accounts
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.