Skip to content

Instantly share code, notes, and snippets.

@superfeedr
Created August 25, 2010 15:56
Show Gist options
  • Save superfeedr/549765 to your computer and use it in GitHub Desktop.
Save superfeedr/549765 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'rack/facebook'
set :port, 3000
use Rack::Facebook, :app_name => "PubSubHubbub Subscriber", :application_secret => "hah", :api_key => "huh"
get '/' do
"Hello!"
end
post '/' do
"ho hai!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment