Skip to content

Instantly share code, notes, and snippets.

@nov
Created March 23, 2011 17:29
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save nov/883541 to your computer and use it in GitHub Desktop.
Save nov/883541 to your computer and use it in GitHub Desktop.
Rack::OAuth2::Client Sample - Token Request
require 'rubygems'
require 'rack/oauth2'
client = Rack::OAuth2::Client.new(
:identifier => YOUR_CLIENT_ID,
:secret => YOUR_CLIENT_SECRET,
:redirect_uri => YOUR_REDIRECT_URI, # only required for grant_type = :code
:host => 'rack-oauth2-sample.heroku.com'
)
grant_type = :authorization_code
puts "## grant_type = :#{grant_type}"
case grant_type
when :client_credentials
# Nothing to do
when :password
client.resource_owner_credentials = YOUR_USERNAME, YOUR_PASSWORD
when :authorization_code
client.authorization_code = YOUR_AUTHORIZATION_CODE
when :refresh_token
client.refresh_token = YOUR_REFRESH_TOKEN_FOR_USER
end
begin
p client.access_token!
rescue => e
p e
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment