Skip to content

Instantly share code, notes, and snippets.

@guenin
Created March 7, 2012 20:16
Show Gist options
  • Save guenin/1995737 to your computer and use it in GitHub Desktop.
Save guenin/1995737 to your computer and use it in GitHub Desktop.
Help HTTParty cope with Facebook's invalid JSON
class Faceparty
class FacebookParser < HTTParty::Parser
def parse
super if body != "false"
end
end
include HTTParty
parser FacebookParser
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment