Skip to content

Instantly share code, notes, and snippets.

@abstractj
Forked from nov/token_request_sample.rb
Created December 12, 2012 14:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save abstractj/4268060 to your computer and use it in GitHub Desktop.
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