Created
June 7, 2014 09:12
-
-
Save nov/586cfbf32b305a56c579 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'openid_connect' | |
| private_key = SecureStorage.device_key_pair | |
| client = Rack::OAuth2::Client.new( | |
| identifier: 'client.example.com', | |
| host: 'server.example.com', | |
| redirect_uri: 'myapp://callback' | |
| ) | |
| def client.server_root_uri | |
| absolute_uri_for '' | |
| end | |
| device_token_claims = OpenIDConnect::ResponseObject::IdToken.self_issued( | |
| iss: client.identifier, | |
| aud: client.server_root_uri, | |
| iat: Time.now, | |
| exp: 10.minutes.from_now, | |
| public_key: private_key.public_key | |
| ).as_json | |
| device_token = JSON::JWT.new(device_token_claims).sign(private_key, :RS256) | |
| authorization_request = client.authorization_uri( | |
| response_type: [:code, :token], | |
| scope: [:profile, :email], | |
| state: SecureRandom.hex(16), | |
| device_token: device_token.to_s | |
| ) | |
| request_uri = URI.parse authorization_request | |
| puts <<-OUTPUT | |
| ## JWT Payload | |
| #{JSON.pretty_generate device_token.as_json} | |
| ## Authorization Request Params | |
| #{JSON.pretty_generate Rack::Utils.parse_nested_query(request_uri.query)} | |
| ## Authorization Request URI | |
| #{request_uri} | |
| OUTPUT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment