Skip to content

Instantly share code, notes, and snippets.

View philcallister's full-sized avatar

Phil Callister philcallister

  • Amazon Web Services (AWS)
  • Minneapolis, MN
  • 14:02 (UTC -05:00)
  • LinkedIn in/philcallister
View GitHub Profile
@dblock
dblock / oauth_controller.rb
Created December 11, 2011 15:16
An updated OAuth2 controller for a Rails app (implies you have ClientApplication and AccessGrant)
class OauthController < ApplicationController
class ApiOAuthError < StandardError
attr_accessor :code, :description, :uri, :state
def initialize(code, description, uri = nil, state = nil)
@code = code
@description = description
@uri = uri