Skip to content

Instantly share code, notes, and snippets.

@superfeedr
Created October 24, 2009 03:56
Show Gist options
  • Save superfeedr/217348 to your computer and use it in GitHub Desktop.
Save superfeedr/217348 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
# Accepts subscriptions vcerification and unsubscription verification
get '/ok' do
params['hub.challenge']
end
# Upon notification... You just need to parse the body to extract the new entries :)
post '/ok' do
puts request.body.read
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment