rack-oauth2-server 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +5 -0
- data/Gemfile +1 -0
- data/Rakefile +11 -11
- data/VERSION +1 -1
- data/lib/rack/oauth2/server.rb +5 -4
- data/rack-oauth2-server.gemspec +2 -3
- data/test/rails2/log/test.log +2896 -0
- data/test/rails3/log/test.log +5066 -0
- metadata +8 -36
data/CHANGELOG
CHANGED
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -2,6 +2,16 @@ require "rake/testtask"
|
|
2
2
|
|
3
3
|
spec = Gem::Specification.load(Dir["*.gemspec"].first)
|
4
4
|
|
5
|
+
desc "Install dependencies"
|
6
|
+
task :setup do
|
7
|
+
puts "Installing gems for testing with Sinatra ..."
|
8
|
+
sh "bundle install"
|
9
|
+
puts "Installing gems for testing with Rails 2.3 ..."
|
10
|
+
sh "env BUNDLE_GEMFILE=Rails2 bundle install"
|
11
|
+
puts "Installing gems for testing with Rails 3.x ..."
|
12
|
+
sh "env BUNDLE_GEMFILE=Rails3 bundle install"
|
13
|
+
end
|
14
|
+
|
5
15
|
desc "Run this in development mode when updating the CoffeeScript file"
|
6
16
|
task :coffee do
|
7
17
|
sh "coffee -w -o lib/rack/oauth2/admin/js/ lib/rack/oauth2/admin/js/application.coffee"
|
@@ -46,7 +56,6 @@ Rake::TestTask.new do |task|
|
|
46
56
|
task.ruby_opts << "-I."
|
47
57
|
end
|
48
58
|
|
49
|
-
RUBIES = %w{1.8.7 1.9.2}
|
50
59
|
namespace :test do
|
51
60
|
task :all=>["test:sinatra", "test:rails2", "test:rails3"]
|
52
61
|
desc "Run all tests against Sinatra"
|
@@ -65,15 +74,6 @@ namespace :test do
|
|
65
74
|
task :rails3 do
|
66
75
|
sh "env BUNDLE_GEMFILE=Rails3 bundle exec rake test FRAMEWORK=rails"
|
67
76
|
end
|
68
|
-
|
69
|
-
desc "Test in all supported RVMs"
|
70
|
-
task :rubies do
|
71
|
-
RUBIES.each do |ruby|
|
72
|
-
puts "*** #{ruby} ***"
|
73
|
-
sh "rvm #{ruby}@rack-oauth2-server rake test:all"
|
74
|
-
puts
|
75
|
-
end
|
76
|
-
end
|
77
77
|
end
|
78
78
|
task :default=>"test:all"
|
79
79
|
|
@@ -85,6 +85,6 @@ begin
|
|
85
85
|
rescue LoadError
|
86
86
|
end
|
87
87
|
|
88
|
-
task :
|
88
|
+
task :clean do
|
89
89
|
rm_rf %w{doc .yardoc *.gem}
|
90
90
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.1
|
data/lib/rack/oauth2/server.rb
CHANGED
@@ -287,7 +287,7 @@ module Rack
|
|
287
287
|
auth_request = AuthRequest.create(client, requested_scope, redirect_uri.to_s, response_type, state)
|
288
288
|
uri = URI.parse(request.url)
|
289
289
|
uri.query = "authorization=#{auth_request.id.to_s}"
|
290
|
-
return
|
290
|
+
return redirect_to(uri, 303)
|
291
291
|
end
|
292
292
|
rescue OAuthError=>error
|
293
293
|
logger.error "RO2S: Authorization request error #{error.code}: #{error.message}" if logger
|
@@ -409,9 +409,10 @@ module Rack
|
|
409
409
|
raise InvalidClientError
|
410
410
|
end
|
411
411
|
|
412
|
-
# Rack redirect response.
|
413
|
-
|
414
|
-
|
412
|
+
# Rack redirect response.
|
413
|
+
# The argument is typically a URI object, and the status should be a 302 or 303.
|
414
|
+
def redirect_to(uri, status = 302)
|
415
|
+
return [status, { "Content-Type"=>"text/plain", "Location"=>uri.to_s }, ["You are being redirected"]]
|
415
416
|
end
|
416
417
|
|
417
418
|
def bad_request(message)
|
data/rack-oauth2-server.gemspec
CHANGED
@@ -5,7 +5,7 @@ Gem::Specification.new do |spec|
|
|
5
5
|
spec.version = IO.read("VERSION")
|
6
6
|
spec.author = "Assaf Arkin"
|
7
7
|
spec.email = "assaf@labnotes.org"
|
8
|
-
spec.homepage = "http://github.com/
|
8
|
+
spec.homepage = "http://github.com/flowtown/#{spec.name}"
|
9
9
|
spec.summary = "OAuth 2.0 Authorization Server as a Rack module"
|
10
10
|
spec.description = "Because you don't allow strangers into your app, and OAuth 2.0 is the new awesome."
|
11
11
|
spec.post_install_message = "To get started, run the command oauth2-server"
|
@@ -13,10 +13,9 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.files = Dir["{bin,lib,rails,test}/**/*", "CHANGELOG", "VERSION", "MIT-LICENSE", "README.rdoc", "Rakefile", "Gemfile", "*.gemspec"]
|
14
14
|
spec.executable = "oauth2-server"
|
15
15
|
|
16
|
-
spec.has_rdoc = true
|
17
16
|
spec.extra_rdoc_files = "README.rdoc", "CHANGELOG"
|
18
17
|
spec.rdoc_options = "--title", "rack-oauth2-server #{spec.version}", "--main", "README.rdoc",
|
19
|
-
"--webcvs", "http://github.com/
|
18
|
+
"--webcvs", "http://github.com/flowtown/#{spec.name}"
|
20
19
|
spec.license = "MIT"
|
21
20
|
|
22
21
|
spec.required_ruby_version = '>= 1.8.7'
|
data/test/rails2/log/test.log
CHANGED
@@ -117216,3 +117216,2899 @@ RO2S: Access token 717262f10d7eff6115202b5378c6ad4bdce7f9261f868cd6ea7b682c758f2
|
|
117216
117216
|
RO2S: Access token cf3aeac06187482cc479bbe092ae7a1b51f64abb8de20dbd4e708afa18a4d638 granted to client UberClient, identity Batman
|
117217
117217
|
RO2S: Access token abe89a3bdf17d84273b13afd826046a3e28d7c264aa811bb930f0755fd2000f1 granted to client UberClient, identity Batman
|
117218
117218
|
RO2S: Access token 874c2259c58ae96c437c0db233f8a34f530e743a7ab6a66a46dd26987fbbacfb granted to client UberClient, identity Batman
|
117219
|
+
RO2S: Client UberClient requested code with scope read write
|
117220
|
+
|
117221
|
+
|
117222
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117223
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000002"}
|
117224
|
+
Completed in 4ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000002]
|
117225
|
+
|
117226
|
+
|
117227
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117228
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000002"}
|
117229
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117230
|
+
RO2S: Client 4da360a73321e8d6c7000001 granted access code b1e339060142eaf546a9c9746c8deffd42ded8b502fed7e016a073a3d6f02c09
|
117231
|
+
RO2S: Client UberClient requested code with scope read write
|
117232
|
+
|
117233
|
+
|
117234
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117235
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000004"}
|
117236
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000004]
|
117237
|
+
|
117238
|
+
|
117239
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117240
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000004"}
|
117241
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117242
|
+
RO2S: Client 4da360a73321e8d6c7000003 granted access code 2f323b52ba8258dea761aaf146350cb5a41bedc74ea1a2e604944ee8ea562270
|
117243
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
117244
|
+
RO2S: Client UberClient requested code with scope read write
|
117245
|
+
|
117246
|
+
|
117247
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117248
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000006"}
|
117249
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000006]
|
117250
|
+
|
117251
|
+
|
117252
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117253
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000006"}
|
117254
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117255
|
+
RO2S: Client 4da360a73321e8d6c7000005 granted access code 68a199ef66adc4d32306c3d856b1b35782ea0ef499241fec646de1d058d58497
|
117256
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
117257
|
+
RO2S: Client UberClient requested code with scope read write
|
117258
|
+
|
117259
|
+
|
117260
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117261
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000008"}
|
117262
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000008]
|
117263
|
+
|
117264
|
+
|
117265
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117266
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000008"}
|
117267
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117268
|
+
RO2S: Client 4da360a73321e8d6c7000007 granted access code 4a2f612a70914f09868de449da394eea1c6a928bb867359416edd178b57737f7
|
117269
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
117270
|
+
RO2S: Client UberClient requested code with scope read write
|
117271
|
+
|
117272
|
+
|
117273
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117274
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700000a"}
|
117275
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700000a]
|
117276
|
+
|
117277
|
+
|
117278
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117279
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700000a"}
|
117280
|
+
Completed in 4ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117281
|
+
RO2S: Client 4da360a73321e8d6c7000009 granted access code b1782f5fa7c22a94d99bc643fa9c8fc678a9dfb1df5d7c91bfdaa77a8560a58c
|
117282
|
+
RO2S: Access token b8d98525800a2d7cff0599328df6c52a36e7fe78d88b0e9f9512930837f9eec5 granted to client UberClient, identity Batman
|
117283
|
+
RO2S: Access token request error invalid_grant: You can't use the same access grant twice
|
117284
|
+
RO2S: Client UberClient requested code with scope read write
|
117285
|
+
|
117286
|
+
|
117287
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117288
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700000c"}
|
117289
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700000c]
|
117290
|
+
|
117291
|
+
|
117292
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117293
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700000c"}
|
117294
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117295
|
+
RO2S: Client 4da360a73321e8d6c700000b granted access code 5990a1517f3747fb1f87f14e8d9fd1ab115a011e629c91713ea7ea8b5eb4490b
|
117296
|
+
RO2S: Access token 0511a9ccc275202527c5771f7ee0e89a557a051d1d8981602cd1d57a8053b1cf granted to client UberClient, identity Batman
|
117297
|
+
RO2S: Access token request error invalid_grant: You can't use the same access grant twice
|
117298
|
+
RO2S: Client UberClient requested code with scope read write
|
117299
|
+
|
117300
|
+
|
117301
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117302
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700000e"}
|
117303
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700000e]
|
117304
|
+
|
117305
|
+
|
117306
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117307
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700000e"}
|
117308
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117309
|
+
RO2S: Client 4da360a73321e8d6c700000d granted access code 745b232cd4c0c5e611f07fc335112b84d202330a270bcb602abfb3872cdce710
|
117310
|
+
RO2S: Access token 8a659222693a83db800462b81d1063753665410f6d8bf8fc9006aa1c53b37fcb granted to client UberClient, identity Batman
|
117311
|
+
RO2S: Access token request error invalid_grant: You can't use the same access grant twice
|
117312
|
+
RO2S: Client UberClient requested code with scope read write
|
117313
|
+
|
117314
|
+
|
117315
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117316
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000010"}
|
117317
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000010]
|
117318
|
+
|
117319
|
+
|
117320
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117321
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000010"}
|
117322
|
+
Completed in 1ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
117323
|
+
RO2S: Client 4da360a73321e8d6c700000f granted access code cf3997955385284c26ed3601ebeef811a6b6925ddb331113a8bbd141f9737476
|
117324
|
+
RO2S: Access token 1bdc821752800320ae93c21b47506e2671957f6573ac66f364c856892b30f123 granted to client UberClient, identity Batman
|
117325
|
+
RO2S: Client UberClient requested code with scope read write
|
117326
|
+
|
117327
|
+
|
117328
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117329
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000012"}
|
117330
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000012]
|
117331
|
+
|
117332
|
+
|
117333
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117334
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000012"}
|
117335
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117336
|
+
RO2S: Client 4da360a73321e8d6c7000011 granted access code d619ca9f1a7004426a3a49b1b5081ab107d76f09fa30f67c6ecff061ae8fc198
|
117337
|
+
RO2S: Access token 5f2e98f59825ae554099b3ccb6dc08027b9a17c95f942cb65f41a8a83e9a1d98 granted to client UberClient, identity Batman
|
117338
|
+
RO2S: Client UberClient requested code with scope read write
|
117339
|
+
|
117340
|
+
|
117341
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117342
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000014"}
|
117343
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000014]
|
117344
|
+
|
117345
|
+
|
117346
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117347
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000014"}
|
117348
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117349
|
+
RO2S: Client 4da360a73321e8d6c7000013 granted access code 680ea5d354aecae9a12f50b4601d0e170eab36ab9c9b0a44c1cb2df3fcfa43ef
|
117350
|
+
RO2S: Access token 1c442e3be3449011b8730374a6cc3ad6a344dc0859c1c02ceee467c6ee0fc0b5 granted to client UberClient, identity Batman
|
117351
|
+
RO2S: Client UberClient requested code with scope read write
|
117352
|
+
|
117353
|
+
|
117354
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117355
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000016"}
|
117356
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000016]
|
117357
|
+
|
117358
|
+
|
117359
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117360
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000016"}
|
117361
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117362
|
+
RO2S: Client 4da360a73321e8d6c7000015 granted access code 0c8e5a9ddd83c1ec3a4b878e952f563016c2a76da38a1259eea0539364b02108
|
117363
|
+
RO2S: Access token f169f985cd6a6712ea82db7853430cde336942eb767b5a36f668c756ec30aefb granted to client UberClient, identity Batman
|
117364
|
+
RO2S: Client UberClient requested code with scope read write
|
117365
|
+
|
117366
|
+
|
117367
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117368
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000018"}
|
117369
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000018]
|
117370
|
+
|
117371
|
+
|
117372
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117373
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000018"}
|
117374
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117375
|
+
RO2S: Client 4da360a73321e8d6c7000017 granted access code 230daefbd2a69e75a47bedb976d00ebd069e39d19ac037dbae90d40b02cc8dd1
|
117376
|
+
RO2S: Access token 060dd95f00b775cf8511cb76799d50dbea29c148d04cc6158f090a924eacbf7e granted to client UberClient, identity Batman
|
117377
|
+
RO2S: Client UberClient requested code with scope read write
|
117378
|
+
|
117379
|
+
|
117380
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117381
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700001a"}
|
117382
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700001a]
|
117383
|
+
|
117384
|
+
|
117385
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117386
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700001a"}
|
117387
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117388
|
+
RO2S: Client 4da360a73321e8d6c7000019 granted access code c9a9ac34c0b3f64b0ea4c07362615777d067e217ffbb3836e2ebf3de86df2e45
|
117389
|
+
RO2S: Access token 752be347c0b20dd6af029e292d313b4adc678f7bb15d7891632c90d76426b5ea granted to client UberClient, identity Batman
|
117390
|
+
RO2S: Client UberClient requested code with scope read write
|
117391
|
+
|
117392
|
+
|
117393
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117394
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700001c"}
|
117395
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700001c]
|
117396
|
+
|
117397
|
+
|
117398
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117399
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700001c"}
|
117400
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117401
|
+
RO2S: Client 4da360a73321e8d6c700001b granted access code 1f30770d355bea9180ba26dab3c2c32353ed551aec38673648d5fb84e9a55d5c
|
117402
|
+
RO2S: Access token 76a6d686150982690b1d39be68a7e86308eddd7a253933717ac2b4cbd514bbaf granted to client UberClient, identity Batman
|
117403
|
+
RO2S: Client UberClient requested code with scope read write
|
117404
|
+
|
117405
|
+
|
117406
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117407
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700001e"}
|
117408
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700001e]
|
117409
|
+
|
117410
|
+
|
117411
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117412
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700001e"}
|
117413
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117414
|
+
RO2S: Client 4da360a73321e8d6c700001d granted access code e8227b943a9368b90151811b56d57ccd6465ac8fe53fc77b7116e96974e2affa
|
117415
|
+
RO2S: Access token 9f4980a713a66c2358a6301a688bf2ae2d9238fead9bf3c4aa5efcb601a0bc7b granted to client UberClient, identity Batman
|
117416
|
+
RO2S: Client UberClient requested code with scope read write
|
117417
|
+
|
117418
|
+
|
117419
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117420
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000020"}
|
117421
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000020]
|
117422
|
+
|
117423
|
+
|
117424
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117425
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000020"}
|
117426
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117427
|
+
RO2S: Client 4da360a73321e8d6c700001f granted access code 5df003ea293c73259dc56dd6057dcd956fb46a7d760c6a7bae45ba3b0ac81d72
|
117428
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117429
|
+
RO2S: Client UberClient requested code with scope read write
|
117430
|
+
|
117431
|
+
|
117432
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117433
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000023"}
|
117434
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000023]
|
117435
|
+
|
117436
|
+
|
117437
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117438
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000023"}
|
117439
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117440
|
+
RO2S: Client 4da360a73321e8d6c7000022 granted access code 69f1ce3465e9ef6e636cde0a0e978e2147cf1c813b8eef70e2d6acca71dc4e45
|
117441
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117442
|
+
RO2S: Client UberClient requested code with scope read write
|
117443
|
+
|
117444
|
+
|
117445
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117446
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000026"}
|
117447
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000026]
|
117448
|
+
|
117449
|
+
|
117450
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117451
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000026"}
|
117452
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117453
|
+
RO2S: Client 4da360a73321e8d6c7000025 granted access code f38cc5cf11cf8721bda32335ec3e9d6f56deeaa5dec111b0814e721435cab346
|
117454
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117455
|
+
RO2S: Client UberClient requested code with scope read write
|
117456
|
+
|
117457
|
+
|
117458
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117459
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000029"}
|
117460
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000029]
|
117461
|
+
|
117462
|
+
|
117463
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117464
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000029"}
|
117465
|
+
Completed in 1ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
117466
|
+
RO2S: Client 4da360a73321e8d6c7000028 granted access code a92dbcfa4badc5066ab6ed99f32b34b622df476faaa7f08c7858cdffa366d3bb
|
117467
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117468
|
+
RO2S: Client UberClient requested code with scope read write
|
117469
|
+
|
117470
|
+
|
117471
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117472
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700002b"}
|
117473
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700002b]
|
117474
|
+
|
117475
|
+
|
117476
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117477
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700002b"}
|
117478
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117479
|
+
RO2S: Client 4da360a73321e8d6c700002a granted access code c3db24ce79d5298b163718ae4eba72f1dbdf8d858f1ac8b4fe73e8d15f3ab152
|
117480
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117481
|
+
RO2S: Client UberClient requested code with scope read write
|
117482
|
+
|
117483
|
+
|
117484
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117485
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700002d"}
|
117486
|
+
Completed in 7ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700002d]
|
117487
|
+
|
117488
|
+
|
117489
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117490
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700002d"}
|
117491
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117492
|
+
RO2S: Client 4da360a73321e8d6c700002c granted access code 4ffa62d008217804285bbf2c093822dfcf6b90fde32e7053cd3bb80d951f89a5
|
117493
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117494
|
+
RO2S: Client UberClient requested code with scope read write
|
117495
|
+
|
117496
|
+
|
117497
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117498
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700002f"}
|
117499
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c700002f]
|
117500
|
+
|
117501
|
+
|
117502
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117503
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c700002f"}
|
117504
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117505
|
+
RO2S: Client 4da360a73321e8d6c700002e granted access code 63759ea44b62b906f103dd89c278acbcb4b24683b918528af606dd4135394961
|
117506
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117507
|
+
RO2S: Client UberClient requested code with scope read write
|
117508
|
+
|
117509
|
+
|
117510
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117511
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000031"}
|
117512
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000031]
|
117513
|
+
|
117514
|
+
|
117515
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117516
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000031"}
|
117517
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117518
|
+
RO2S: Client 4da360a73321e8d6c7000030 granted access code f4f2066f5c64c9910c08ef3e7d79d88ac217ce0b148db4fd00c26333f12ba545
|
117519
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117520
|
+
RO2S: Client UberClient requested code with scope read write
|
117521
|
+
|
117522
|
+
|
117523
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:23) [GET]
|
117524
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000033"}
|
117525
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a73321e8d6c7000033]
|
117526
|
+
|
117527
|
+
|
117528
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:23) [POST]
|
117529
|
+
Parameters: {"authorization"=>"4da360a73321e8d6c7000033"}
|
117530
|
+
Completed in 1ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
117531
|
+
RO2S: Client 4da360a73321e8d6c7000032 granted access code feafa3474dd4b916871d0cb8e646b944b4c134ece88c5eb3e5660beddd8f379a
|
117532
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117533
|
+
RO2S: Client UberClient requested code with scope read write
|
117534
|
+
|
117535
|
+
|
117536
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117537
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000035"}
|
117538
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000035]
|
117539
|
+
|
117540
|
+
|
117541
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117542
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000035"}
|
117543
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117544
|
+
RO2S: Client 4da360a83321e8d6c7000034 granted access code 848e3a18c29479e669a6ca928c6073c9dba3f9686b8ef03a8bf4155f8502f934
|
117545
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117546
|
+
RO2S: Client UberClient requested code with scope read write
|
117547
|
+
|
117548
|
+
|
117549
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117550
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000037"}
|
117551
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000037]
|
117552
|
+
|
117553
|
+
|
117554
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117555
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000037"}
|
117556
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117557
|
+
RO2S: Client 4da360a83321e8d6c7000036 granted access code 875ed7ef204250170add381e62b737ef68c317ebb8bfcd2169e00778860ab722
|
117558
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117559
|
+
RO2S: Client UberClient requested code with scope read write
|
117560
|
+
|
117561
|
+
|
117562
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117563
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000039"}
|
117564
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000039]
|
117565
|
+
|
117566
|
+
|
117567
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117568
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000039"}
|
117569
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117570
|
+
RO2S: Client 4da360a83321e8d6c7000038 granted access code 6b37ea00f104479ea74eedb3e608982a956523ab8676f65f9d9308da04495e75
|
117571
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117572
|
+
RO2S: Client UberClient requested code with scope read write
|
117573
|
+
|
117574
|
+
|
117575
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117576
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700003b"}
|
117577
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700003b]
|
117578
|
+
|
117579
|
+
|
117580
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117581
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700003b"}
|
117582
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117583
|
+
RO2S: Client 4da360a83321e8d6c700003a granted access code 1a852fdc7fb3bdcc7db13cf20c089f695c20b41068bef873dffa4fe2b37e99d3
|
117584
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117585
|
+
RO2S: Client UberClient requested code with scope read write
|
117586
|
+
|
117587
|
+
|
117588
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117589
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700003d"}
|
117590
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700003d]
|
117591
|
+
|
117592
|
+
|
117593
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117594
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700003d"}
|
117595
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117596
|
+
RO2S: Client 4da360a83321e8d6c700003c granted access code ccf355fdc7234e36e1d7439152dedd4d85cc9e8cd339907a9d246674b9939621
|
117597
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117598
|
+
RO2S: Client UberClient requested code with scope read write
|
117599
|
+
|
117600
|
+
|
117601
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117602
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700003f"}
|
117603
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700003f]
|
117604
|
+
|
117605
|
+
|
117606
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117607
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700003f"}
|
117608
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117609
|
+
RO2S: Client 4da360a83321e8d6c700003e granted access code bea2b1c5f8158d373af1ea50d72e9c056f2be53c09b3f0637445c4f8bf98c4e0
|
117610
|
+
RO2S: Access token 742fc5d906f99fd2d1cc7fb90853b6c50c9158c41b810575c651e2fd72b99fe0 granted to client UberClient, identity Batman
|
117611
|
+
RO2S: Client UberClient requested code with scope read write
|
117612
|
+
|
117613
|
+
|
117614
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117615
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000041"}
|
117616
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000041]
|
117617
|
+
|
117618
|
+
|
117619
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117620
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000041"}
|
117621
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117622
|
+
RO2S: Client 4da360a83321e8d6c7000040 granted access code be0d182177db1d08b7c680e3e0cad8f386c5e9896f5dfe9d401a072c43a684ee
|
117623
|
+
RO2S: Access token 4d3dff9257d8529276c9c6effa81f9511b524cc76fd21f697741914b90415baf granted to client UberClient, identity Batman
|
117624
|
+
RO2S: Client UberClient requested code with scope read write
|
117625
|
+
|
117626
|
+
|
117627
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117628
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000043"}
|
117629
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000043]
|
117630
|
+
|
117631
|
+
|
117632
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117633
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000043"}
|
117634
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117635
|
+
RO2S: Client 4da360a83321e8d6c7000042 granted access code 0cc376f848eadd8a1d6910b5c63f3b5cf58b708e94b3978743de6d1c2d459941
|
117636
|
+
RO2S: Access token be9e4ba6c3c9cc7a0783895b4d87893ba8ea25bfe16c458d010cb8708b59445a granted to client UberClient, identity Batman
|
117637
|
+
RO2S: Client UberClient requested code with scope read write
|
117638
|
+
|
117639
|
+
|
117640
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117641
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000045"}
|
117642
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000045]
|
117643
|
+
|
117644
|
+
|
117645
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117646
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000045"}
|
117647
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117648
|
+
RO2S: Client 4da360a83321e8d6c7000044 granted access code b7d2155dcf311526a58a14c12742d440d4ca7242a0a2953b3bf6aae14d2a8ca0
|
117649
|
+
RO2S: Access token 32587ef630a6376100b649082a9208f6326c7e13d784bcc73229eff9dc27ca6d granted to client UberClient, identity Batman
|
117650
|
+
RO2S: Client UberClient requested code with scope read write
|
117651
|
+
|
117652
|
+
|
117653
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117654
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000047"}
|
117655
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000047]
|
117656
|
+
|
117657
|
+
|
117658
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117659
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000047"}
|
117660
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117661
|
+
RO2S: Client 4da360a83321e8d6c7000046 granted access code 91ebb449b4e3c6f256c75545202f677efbcabef54e91629d9ad1f9c90b775dcd
|
117662
|
+
RO2S: Access token 1c4ca54e9d96a0491b03abd776b8e1d84b0a40e914147bed1347d0846767248b granted to client UberClient, identity Batman
|
117663
|
+
RO2S: Client UberClient requested code with scope read write
|
117664
|
+
|
117665
|
+
|
117666
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117667
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000049"}
|
117668
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000049]
|
117669
|
+
|
117670
|
+
|
117671
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117672
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000049"}
|
117673
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117674
|
+
RO2S: Client 4da360a83321e8d6c7000048 granted access code 6537a5b12ca98deb8cde560ac42c7b2c2eb9d66fc58df989efd8ddc9661f99c8
|
117675
|
+
RO2S: Access token 02580ab62581990fb6163c4e375cf5996180c74faf07be74226cfcfab1ba410f granted to client UberClient, identity Batman
|
117676
|
+
RO2S: Client UberClient requested code with scope read write
|
117677
|
+
|
117678
|
+
|
117679
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117680
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700004b"}
|
117681
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700004b]
|
117682
|
+
|
117683
|
+
|
117684
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117685
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700004b"}
|
117686
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117687
|
+
RO2S: Client 4da360a83321e8d6c700004a granted access code 27d363f5d49d731f365556a6264756b5f43429209170748182543c502f191c25
|
117688
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117689
|
+
RO2S: Client UberClient requested code with scope read write
|
117690
|
+
|
117691
|
+
|
117692
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117693
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700004d"}
|
117694
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700004d]
|
117695
|
+
|
117696
|
+
|
117697
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117698
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700004d"}
|
117699
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117700
|
+
RO2S: Client 4da360a83321e8d6c700004c granted access code 397327aeaea9695551b54c5852fca5abf34967661852e201b9407d533ce3dc8b
|
117701
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117702
|
+
RO2S: Client UberClient requested code with scope read write
|
117703
|
+
|
117704
|
+
|
117705
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117706
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700004f"}
|
117707
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700004f]
|
117708
|
+
|
117709
|
+
|
117710
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117711
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700004f"}
|
117712
|
+
Completed in 9ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117713
|
+
RO2S: Client 4da360a83321e8d6c700004e granted access code 25d30e750799a56c9dfa6e1b576c51022e0fff27c4d5cd696bcb013f6dc0afd5
|
117714
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117715
|
+
RO2S: Client UberClient requested code with scope read write
|
117716
|
+
|
117717
|
+
|
117718
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117719
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000051"}
|
117720
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000051]
|
117721
|
+
|
117722
|
+
|
117723
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117724
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000051"}
|
117725
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117726
|
+
RO2S: Client 4da360a83321e8d6c7000050 granted access code a1ed73bd139b072de9cc1a8787cde1b0daa2e1f6b5fd87747c50343d536395da
|
117727
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117728
|
+
RO2S: Client UberClient requested code with scope read write
|
117729
|
+
|
117730
|
+
|
117731
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117732
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000053"}
|
117733
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000053]
|
117734
|
+
|
117735
|
+
|
117736
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117737
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000053"}
|
117738
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117739
|
+
RO2S: Client 4da360a83321e8d6c7000052 granted access code 4e5f6f5419fdcceb29469d4f45571b13217f9ec719a3e2f68611af6dd5045778
|
117740
|
+
RO2S: Access token request error invalid_grant: Wrong redirect URI
|
117741
|
+
RO2S: Client UberClient requested code with scope read write
|
117742
|
+
|
117743
|
+
|
117744
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117745
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000055"}
|
117746
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000055]
|
117747
|
+
|
117748
|
+
|
117749
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117750
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000055"}
|
117751
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117752
|
+
RO2S: Client 4da360a83321e8d6c7000054 granted access code eab12a1f609faac907f3ae01e89080067d3e8edb58bf517574abdfd0df2d9e65
|
117753
|
+
RO2S: Access token request error invalid_grant: Wrong redirect URI
|
117754
|
+
RO2S: Client UberClient requested code with scope read write
|
117755
|
+
|
117756
|
+
|
117757
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117758
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000057"}
|
117759
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000057]
|
117760
|
+
|
117761
|
+
|
117762
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117763
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000057"}
|
117764
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117765
|
+
RO2S: Client 4da360a83321e8d6c7000056 granted access code e15a74be6160b73da155ae42d301b2d7a573540274f13c4c9cfcf9d1dd8943d2
|
117766
|
+
RO2S: Access token request error invalid_grant: Wrong redirect URI
|
117767
|
+
RO2S: Client UberClient requested code with scope read write
|
117768
|
+
|
117769
|
+
|
117770
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117771
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000059"}
|
117772
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000059]
|
117773
|
+
|
117774
|
+
|
117775
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117776
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000059"}
|
117777
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117778
|
+
RO2S: Client 4da360a83321e8d6c7000058 granted access code fe2f29b0cbe1ae1702b593f5f9890cc4d740251ea99046871aac116e36d5c36b
|
117779
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117780
|
+
RO2S: Client UberClient requested code with scope read write
|
117781
|
+
|
117782
|
+
|
117783
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117784
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700005b"}
|
117785
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700005b]
|
117786
|
+
|
117787
|
+
|
117788
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117789
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700005b"}
|
117790
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117791
|
+
RO2S: Client 4da360a83321e8d6c700005a granted access code 2433292a0febc31d2d72df5d66684e9cf562be4d1f5f96b25a8d984269506c1b
|
117792
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117793
|
+
RO2S: Client UberClient requested code with scope read write
|
117794
|
+
|
117795
|
+
|
117796
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117797
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700005d"}
|
117798
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700005d]
|
117799
|
+
|
117800
|
+
|
117801
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117802
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700005d"}
|
117803
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117804
|
+
RO2S: Client 4da360a83321e8d6c700005c granted access code 339a9dab95d5606cb3cb810749576524f44e5ef046432ffe0a5b4c1a13af1585
|
117805
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
117806
|
+
RO2S: Client UberClient requested code with scope read write
|
117807
|
+
|
117808
|
+
|
117809
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117810
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700005f"}
|
117811
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700005f]
|
117812
|
+
|
117813
|
+
|
117814
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117815
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700005f"}
|
117816
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117817
|
+
RO2S: Client 4da360a83321e8d6c700005e granted access code 25486f5bac5e83d8a26199b7a2645d94d9418c337b9c49e10112489b58f08360
|
117818
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117819
|
+
RO2S: Client UberClient requested code with scope read write
|
117820
|
+
|
117821
|
+
|
117822
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117823
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000061"}
|
117824
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000061]
|
117825
|
+
|
117826
|
+
|
117827
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117828
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000061"}
|
117829
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117830
|
+
RO2S: Client 4da360a83321e8d6c7000060 granted access code 2fb1fba3a61c1d6218da5d017d0f637b5861c7996d77ce18963b1bf2e5894db6
|
117831
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117832
|
+
RO2S: Client UberClient requested code with scope read write
|
117833
|
+
|
117834
|
+
|
117835
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117836
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000063"}
|
117837
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000063]
|
117838
|
+
|
117839
|
+
|
117840
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117841
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000063"}
|
117842
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117843
|
+
RO2S: Client 4da360a83321e8d6c7000062 granted access code 4971af943f8b69f44914003c44166a5325c54379b47141c30757f70fc661d6be
|
117844
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117845
|
+
RO2S: Client UberClient requested code with scope read write
|
117846
|
+
|
117847
|
+
|
117848
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117849
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000065"}
|
117850
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000065]
|
117851
|
+
|
117852
|
+
|
117853
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117854
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000065"}
|
117855
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117856
|
+
RO2S: Client 4da360a83321e8d6c7000064 granted access code 52d314c0d32ed2575aaebaea36f479b01ad265206e0c757d37643d0223f71621
|
117857
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117858
|
+
RO2S: Client UberClient requested code with scope read write
|
117859
|
+
|
117860
|
+
|
117861
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117862
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000067"}
|
117863
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000067]
|
117864
|
+
|
117865
|
+
|
117866
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117867
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000067"}
|
117868
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117869
|
+
RO2S: Client 4da360a83321e8d6c7000066 granted access code d4f940126b3167b0cafc689ef1ac2a45e0e8ca56a05d5dfa9bcff296f8158989
|
117870
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117871
|
+
RO2S: Client UberClient requested code with scope read write
|
117872
|
+
|
117873
|
+
|
117874
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117875
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000069"}
|
117876
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000069]
|
117877
|
+
|
117878
|
+
|
117879
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117880
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000069"}
|
117881
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117882
|
+
RO2S: Client 4da360a83321e8d6c7000068 granted access code c7ebc2dffd25cef3543c3c4a0e6f412d841df50fb176de80c85313c4687b52dc
|
117883
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117884
|
+
RO2S: Client UberClient requested code with scope read write
|
117885
|
+
|
117886
|
+
|
117887
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117888
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700006b"}
|
117889
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700006b]
|
117890
|
+
|
117891
|
+
|
117892
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117893
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700006b"}
|
117894
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117895
|
+
RO2S: Client 4da360a83321e8d6c700006a granted access code 6eac91d4c99db2c69de426b84dae96e7ca641b88f4e0e4f6d9a945c64bdbfbb5
|
117896
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117897
|
+
RO2S: Client UberClient requested code with scope read write
|
117898
|
+
|
117899
|
+
|
117900
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117901
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700006d"}
|
117902
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700006d]
|
117903
|
+
|
117904
|
+
|
117905
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117906
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700006d"}
|
117907
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117908
|
+
RO2S: Client 4da360a83321e8d6c700006c granted access code b30c0a7e80f6599c9c57660a6f586234002530b7dd32bfe80d8a90123c945620
|
117909
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
117910
|
+
RO2S: Client UberClient requested code with scope read write
|
117911
|
+
|
117912
|
+
|
117913
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117914
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700006f"}
|
117915
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700006f]
|
117916
|
+
|
117917
|
+
|
117918
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117919
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700006f"}
|
117920
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117921
|
+
RO2S: Client 4da360a83321e8d6c700006e granted access code 1ed6192de2c8b3ff6a85132ee97fd02eea80cbc36fd66307cafe7eed3cc5f47c
|
117922
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
117923
|
+
RO2S: Client UberClient requested code with scope read write
|
117924
|
+
|
117925
|
+
|
117926
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117927
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000071"}
|
117928
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000071]
|
117929
|
+
|
117930
|
+
|
117931
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117932
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000071"}
|
117933
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117934
|
+
RO2S: Client 4da360a83321e8d6c7000070 granted access code 3de8ba2925d0ba9500b36a68d5e8bd9a339a69bd42c9bed2ed14ddc365a2dc6c
|
117935
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
117936
|
+
RO2S: Client UberClient requested code with scope read write
|
117937
|
+
|
117938
|
+
|
117939
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117940
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000073"}
|
117941
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000073]
|
117942
|
+
|
117943
|
+
|
117944
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117945
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000073"}
|
117946
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117947
|
+
RO2S: Client 4da360a83321e8d6c7000072 granted access code 6db54c13bc362e153de8a5c4e4e24def75ee047c91b7b91b90d07755f44a2aaa
|
117948
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
117949
|
+
RO2S: Client UberClient requested code with scope read write
|
117950
|
+
|
117951
|
+
|
117952
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117953
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000075"}
|
117954
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000075]
|
117955
|
+
|
117956
|
+
|
117957
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117958
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000075"}
|
117959
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117960
|
+
RO2S: Client 4da360a83321e8d6c7000074 granted access code ddb3a743fc429c3cc71c17afb7406d75d3f53906487f763ba213033c5fda3ce4
|
117961
|
+
RO2S: Access token b76123e685a32cc18cbb5ef0b5995929991079ea06c84bd8653b0395c7b9756d granted to client No rediret, identity foo bar
|
117962
|
+
RO2S: Client UberClient requested code with scope read write
|
117963
|
+
|
117964
|
+
|
117965
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117966
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000078"}
|
117967
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000078]
|
117968
|
+
|
117969
|
+
|
117970
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117971
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000078"}
|
117972
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117973
|
+
RO2S: Client 4da360a83321e8d6c7000077 granted access code ba7340f3e74db44ca9376f0379a4f8302649f8217b0258eabc8c09d3292ea153
|
117974
|
+
RO2S: Access token 2f8147f07f337f4b8d9cb0e0f490a6bb8a14aa66d2ba43b9089417762345755b granted to client No rediret, identity foo bar
|
117975
|
+
RO2S: Client UberClient requested code with scope read write
|
117976
|
+
|
117977
|
+
|
117978
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117979
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700007b"}
|
117980
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700007b]
|
117981
|
+
|
117982
|
+
|
117983
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117984
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700007b"}
|
117985
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117986
|
+
RO2S: Client 4da360a83321e8d6c700007a granted access code 01d198b2bc866b964a3d899a8e8dd5848114ca6ab95712e7d4cfc44642f77a83
|
117987
|
+
RO2S: Access token 3393e0d82b28387863bf7a0257a0e2380cf718cb828a86a64a348c07f3dc9d19 granted to client No rediret, identity foo bar
|
117988
|
+
RO2S: Client UberClient requested code with scope read write
|
117989
|
+
|
117990
|
+
|
117991
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
117992
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700007e"}
|
117993
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c700007e]
|
117994
|
+
|
117995
|
+
|
117996
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
117997
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c700007e"}
|
117998
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
117999
|
+
RO2S: Client 4da360a83321e8d6c700007d granted access code b2ec04442f63418389619b97c73eb9de677e91184683d752fa3bf238a8253775
|
118000
|
+
RO2S: Access token a58a88f5f2f0e99ef630b2cc90de181ac4961fdb654e234dddf434794ae0cab8 granted to client No rediret, identity foo bar
|
118001
|
+
RO2S: Client UberClient requested code with scope read write
|
118002
|
+
|
118003
|
+
|
118004
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:24) [GET]
|
118005
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000081"}
|
118006
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a83321e8d6c7000081]
|
118007
|
+
|
118008
|
+
|
118009
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:24) [POST]
|
118010
|
+
Parameters: {"authorization"=>"4da360a83321e8d6c7000081"}
|
118011
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118012
|
+
RO2S: Client 4da360a83321e8d6c7000080 granted access code 0f0a8da2fa4464f824edacde40a05b3f7830230f403a5936556c75bfb294a2ed
|
118013
|
+
RO2S: Access token 91b5864496411fae50a894287b535851ff0829c5e8676675bea9320da8cafc17 granted to client No rediret, identity foo bar
|
118014
|
+
RO2S: Client UberClient requested code with scope read write
|
118015
|
+
|
118016
|
+
|
118017
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118018
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000084"}
|
118019
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000084]
|
118020
|
+
|
118021
|
+
|
118022
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118023
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000084"}
|
118024
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118025
|
+
RO2S: Client 4da360a93321e8d6c7000083 granted access code a8542d294508ef25b01c76aa4091bed325f0844bf2bd100aa36281cf835e81d7
|
118026
|
+
RO2S: Access token e1386d4c00cd7873fe377208e5e88debe961fceb7373e753cf7b8caf3bdb34ba granted to client No rediret, identity foo bar
|
118027
|
+
RO2S: Client UberClient requested code with scope read write
|
118028
|
+
|
118029
|
+
|
118030
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118031
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000087"}
|
118032
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000087]
|
118033
|
+
|
118034
|
+
|
118035
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118036
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000087"}
|
118037
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118038
|
+
RO2S: Client 4da360a93321e8d6c7000086 granted access code 455700e6277a007818a5731c31191c4564eb6be5c8f5a4d10e8ca3ee22a82ad4
|
118039
|
+
RO2S: Access token bf1255d824409fc48b8b8f34c3981dc538622431c0c7a223ff74150cb5515c5b granted to client UberClient, identity Batman
|
118040
|
+
RO2S: Client UberClient requested code with scope read write
|
118041
|
+
|
118042
|
+
|
118043
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118044
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000089"}
|
118045
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000089]
|
118046
|
+
|
118047
|
+
|
118048
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118049
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000089"}
|
118050
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118051
|
+
RO2S: Client 4da360a93321e8d6c7000088 granted access code 0bb81e6627cbe3c18bbe856415378df37c5f301a636960b5389dbfce809b6efe
|
118052
|
+
RO2S: Access token 3040c77c179ece10e63f6ca5a1450b70fc6485015474df8faf871bad1f7e214b granted to client UberClient, identity Batman
|
118053
|
+
RO2S: Client UberClient requested code with scope read write
|
118054
|
+
|
118055
|
+
|
118056
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118057
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700008b"}
|
118058
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c700008b]
|
118059
|
+
|
118060
|
+
|
118061
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118062
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700008b"}
|
118063
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118064
|
+
RO2S: Client 4da360a93321e8d6c700008a granted access code 11744c8786ba79b59372765230c24656181323fa65538e512b176d9eaf79e84b
|
118065
|
+
RO2S: Access token 07e564d74a2592d42cb89c8708762174d02d96ddfa975cb275c0dea4828fd1c4 granted to client UberClient, identity Batman
|
118066
|
+
RO2S: Client UberClient requested code with scope read write
|
118067
|
+
|
118068
|
+
|
118069
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118070
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700008d"}
|
118071
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c700008d]
|
118072
|
+
|
118073
|
+
|
118074
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118075
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700008d"}
|
118076
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118077
|
+
RO2S: Client 4da360a93321e8d6c700008c granted access code 82cad5295b45c7170696c44a6ba7152151ec00e310a1b394a2c12785488b1176
|
118078
|
+
RO2S: Access token 433a9d2fb51664d236d152a5344ebbdb8019cfc69c4b8f9454ab0f99b0faccbe granted to client UberClient, identity Batman
|
118079
|
+
RO2S: Client UberClient requested code with scope read write
|
118080
|
+
|
118081
|
+
|
118082
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118083
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700008f"}
|
118084
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c700008f]
|
118085
|
+
|
118086
|
+
|
118087
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118088
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700008f"}
|
118089
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118090
|
+
RO2S: Client 4da360a93321e8d6c700008e granted access code baebb0dec6df7a361945b7ec9d499d685f555b2560389201d9820ef39070830d
|
118091
|
+
RO2S: Access token c03e65e0afe58da389f84346cb32e3961708b214ae10b95a7c584ae09686eb44 granted to client UberClient, identity Batman
|
118092
|
+
RO2S: Client UberClient requested code with scope read write
|
118093
|
+
|
118094
|
+
|
118095
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118096
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000091"}
|
118097
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000091]
|
118098
|
+
|
118099
|
+
|
118100
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118101
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000091"}
|
118102
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118103
|
+
RO2S: Client 4da360a93321e8d6c7000090 granted access code 737be0cc221cd2ded67fecfeb3b3c399beef75a8ed4cbfe56a2ff20802f36b41
|
118104
|
+
RO2S: Access token 39aac36110f41666cd2d45d0925294e804205f9135a2ce78e13d906a60416dee granted to client UberClient, identity Batman
|
118105
|
+
RO2S: Client UberClient requested code with scope read write
|
118106
|
+
|
118107
|
+
|
118108
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118109
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000093"}
|
118110
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000093]
|
118111
|
+
|
118112
|
+
|
118113
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118114
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000093"}
|
118115
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118116
|
+
RO2S: Client 4da360a93321e8d6c7000092 granted access code fba96f6db684821a83f2f3df665854bc6ef35ef22400a33f835a79d8d2b745ca
|
118117
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
118118
|
+
RO2S: Client UberClient requested code with scope read write
|
118119
|
+
|
118120
|
+
|
118121
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118122
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000095"}
|
118123
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000095]
|
118124
|
+
|
118125
|
+
|
118126
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118127
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000095"}
|
118128
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118129
|
+
RO2S: Client 4da360a93321e8d6c7000094 granted access code b8ffa6af604a36cf92426fe6b1de3b25e7ffc4b563146e13fef3f4109063e0c8
|
118130
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
118131
|
+
RO2S: Client UberClient requested code with scope read write
|
118132
|
+
|
118133
|
+
|
118134
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118135
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000097"}
|
118136
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000097]
|
118137
|
+
|
118138
|
+
|
118139
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118140
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000097"}
|
118141
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118142
|
+
RO2S: Client 4da360a93321e8d6c7000096 granted access code 879667a5d14ca2ce1808c73e502548d488d322e3a18782f54cf6694a12285c86
|
118143
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
118144
|
+
RO2S: Client UberClient requested code with scope read write
|
118145
|
+
|
118146
|
+
|
118147
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118148
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000099"}
|
118149
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c7000099]
|
118150
|
+
|
118151
|
+
|
118152
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118153
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c7000099"}
|
118154
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118155
|
+
RO2S: Client 4da360a93321e8d6c7000098 granted access code dc5f2f31189ce0500135e67938b8fe51c59f59e30d857b42c2dd0f774ceabaf3
|
118156
|
+
RO2S: Access token request error invalid_grant: Username/password do not match
|
118157
|
+
RO2S: Client UberClient requested code with scope read write
|
118158
|
+
|
118159
|
+
|
118160
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118161
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700009b"}
|
118162
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c700009b]
|
118163
|
+
|
118164
|
+
|
118165
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118166
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700009b"}
|
118167
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118168
|
+
RO2S: Client 4da360a93321e8d6c700009a granted access code fe59bfe36b5993fcd1c3f90b39bf0e160aab6634e74054d1b5f6c91de0e1349c
|
118169
|
+
RO2S: Access token request error invalid_grant: Username/password do not match
|
118170
|
+
RO2S: Client UberClient requested code with scope read write
|
118171
|
+
|
118172
|
+
|
118173
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118174
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700009d"}
|
118175
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c700009d]
|
118176
|
+
|
118177
|
+
|
118178
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118179
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700009d"}
|
118180
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118181
|
+
RO2S: Client 4da360a93321e8d6c700009c granted access code 97243e5200bed9cc42b29a15a18ca14e5791ad3cc2b8c4f56c19d878b943741a
|
118182
|
+
RO2S: Access token request error invalid_grant: Username/password do not match
|
118183
|
+
RO2S: Client UberClient requested code with scope read write
|
118184
|
+
|
118185
|
+
|
118186
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118187
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700009f"}
|
118188
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c700009f]
|
118189
|
+
|
118190
|
+
|
118191
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118192
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c700009f"}
|
118193
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118194
|
+
RO2S: Client 4da360a93321e8d6c700009e granted access code 2d87e9440a42474174ea4c9d577109fe93157d4d779bcddaad179f7cf5205c7b
|
118195
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
118196
|
+
RO2S: Client UberClient requested code with scope read write
|
118197
|
+
|
118198
|
+
|
118199
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118200
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a1"}
|
118201
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000a1]
|
118202
|
+
|
118203
|
+
|
118204
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118205
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a1"}
|
118206
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118207
|
+
RO2S: Client 4da360a93321e8d6c70000a0 granted access code bafbe5feb298302f59529ff2ffd8835368b9b5705b7f81646f5da32e47e296b0
|
118208
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
118209
|
+
RO2S: Client UberClient requested code with scope read write
|
118210
|
+
|
118211
|
+
|
118212
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118213
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a3"}
|
118214
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000a3]
|
118215
|
+
|
118216
|
+
|
118217
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118218
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a3"}
|
118219
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118220
|
+
RO2S: Client 4da360a93321e8d6c70000a2 granted access code f7361bcd3cfb5a6bdc6ca065701cd0f9699071f0a150fbe6847913a53321ab8f
|
118221
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
118222
|
+
RO2S: Client UberClient requested code with scope read write
|
118223
|
+
|
118224
|
+
|
118225
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118226
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a5"}
|
118227
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000a5]
|
118228
|
+
|
118229
|
+
|
118230
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118231
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a5"}
|
118232
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118233
|
+
RO2S: Client 4da360a93321e8d6c70000a4 granted access code def9f3921ec17b08d869ae1b05d63b765e74bd89a52b5d76e48057b275f7238e
|
118234
|
+
RO2S: Access token request error unsupported_grant_type: This access grant type is not supported by this server.
|
118235
|
+
RO2S: Client UberClient requested code with scope read write
|
118236
|
+
|
118237
|
+
|
118238
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118239
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a7"}
|
118240
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000a7]
|
118241
|
+
|
118242
|
+
|
118243
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118244
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a7"}
|
118245
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118246
|
+
RO2S: Client 4da360a93321e8d6c70000a6 granted access code b1540de2ae0802572953bc309c5ee61e010dc8633eda678ea2a0935079c8d57f
|
118247
|
+
RO2S: Access token request error unsupported_grant_type: This access grant type is not supported by this server.
|
118248
|
+
RO2S: Client UberClient requested code with scope read write
|
118249
|
+
|
118250
|
+
|
118251
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118252
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a9"}
|
118253
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000a9]
|
118254
|
+
|
118255
|
+
|
118256
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118257
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000a9"}
|
118258
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118259
|
+
RO2S: Client 4da360a93321e8d6c70000a8 granted access code d3f96bec9ec6729f1af66e0971ee772dac632af86b3ae0b03551c99e0b162237
|
118260
|
+
RO2S: Access token request error unsupported_grant_type: This access grant type is not supported by this server.
|
118261
|
+
RO2S: Client UberClient requested code with scope read write
|
118262
|
+
|
118263
|
+
|
118264
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118265
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000ab"}
|
118266
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000ab]
|
118267
|
+
|
118268
|
+
|
118269
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118270
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000ab"}
|
118271
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118272
|
+
RO2S: Client 4da360a93321e8d6c70000aa granted access code eecf538d4777c8f0eb937c0b6763b4e8b7fda3e84a193e46a73f0446539b5106
|
118273
|
+
RO2S: Access token request error invalid_scope: The requested scope is not supported.
|
118274
|
+
RO2S: Client UberClient requested code with scope read write
|
118275
|
+
|
118276
|
+
|
118277
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118278
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000ad"}
|
118279
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000ad]
|
118280
|
+
|
118281
|
+
|
118282
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118283
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000ad"}
|
118284
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118285
|
+
RO2S: Client 4da360a93321e8d6c70000ac granted access code 890a33d17e26b768790d93577cc7569d94b79ea318569b3da606390a4f3f2727
|
118286
|
+
RO2S: Access token request error invalid_scope: The requested scope is not supported.
|
118287
|
+
RO2S: Client UberClient requested code with scope read write
|
118288
|
+
|
118289
|
+
|
118290
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118291
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000af"}
|
118292
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000af]
|
118293
|
+
|
118294
|
+
|
118295
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118296
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000af"}
|
118297
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118298
|
+
RO2S: Client 4da360a93321e8d6c70000ae granted access code a6a16dbdf3e097767e0b0908b3746f75aa9c9b3a46dc284564911cdb7e90d7c3
|
118299
|
+
RO2S: Access token request error invalid_scope: The requested scope is not supported.
|
118300
|
+
RO2S: Client UberClient requested code with scope read write
|
118301
|
+
|
118302
|
+
|
118303
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118304
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b1"}
|
118305
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000b1]
|
118306
|
+
|
118307
|
+
|
118308
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118309
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b1"}
|
118310
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118311
|
+
RO2S: Client 4da360a93321e8d6c70000b0 granted access code db53eca5a8fd1a276c23d5e2a11a4529cd29e8498a8f798e38759bfd4dbc5858
|
118312
|
+
RO2S: Access token 43d7ae4c4ce641b9ff595d7d4510f0f6e4e9d1daa9886d8f98107f5f1292d0b3 granted to client UberClient, identity Batman
|
118313
|
+
RO2S: Client UberClient requested code with scope read write
|
118314
|
+
|
118315
|
+
|
118316
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118317
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b3"}
|
118318
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000b3]
|
118319
|
+
|
118320
|
+
|
118321
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118322
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b3"}
|
118323
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118324
|
+
RO2S: Client 4da360a93321e8d6c70000b2 granted access code 7bc457616dd35be3eaca043f8031777f2be44b27e2d2828a9a7ef16da01d7091
|
118325
|
+
RO2S: Access token 7cc8c1de4fc8eccba87963e4f7f97dac8cf18fad3679bfcedede4439f596f631 granted to client UberClient, identity Batman
|
118326
|
+
RO2S: Client UberClient requested code with scope read write
|
118327
|
+
|
118328
|
+
|
118329
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118330
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b5"}
|
118331
|
+
Completed in 30ms (View: 29 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000b5]
|
118332
|
+
|
118333
|
+
|
118334
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118335
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b5"}
|
118336
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118337
|
+
RO2S: Client 4da360a93321e8d6c70000b4 granted access code 5bbf22d322b32d54bf472e4b0f2f1e47d20069173bb0b43496ff1ee06f797775
|
118338
|
+
RO2S: Access token e3bd07d4fa14a673f450c4db2c1fcfb5facd6c93cec725b206ae68667dae931e granted to client UberClient, identity Batman
|
118339
|
+
RO2S: Client UberClient requested code with scope read write
|
118340
|
+
|
118341
|
+
|
118342
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118343
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b7"}
|
118344
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000b7]
|
118345
|
+
|
118346
|
+
|
118347
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118348
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b7"}
|
118349
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118350
|
+
RO2S: Client 4da360a93321e8d6c70000b6 granted access code b9a555f6bea1a88a9a00e55cb73eeb10ff08e72bdc9df6079c883f51e2e139cd
|
118351
|
+
RO2S: Access token b936582e786f0226d98b2ed77a5197c25a56bb919fe137f3aad981b28638174f granted to client UberClient, identity Batman
|
118352
|
+
RO2S: Client UberClient requested code with scope read write
|
118353
|
+
|
118354
|
+
|
118355
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118356
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b9"}
|
118357
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000b9]
|
118358
|
+
|
118359
|
+
|
118360
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118361
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000b9"}
|
118362
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118363
|
+
RO2S: Client 4da360a93321e8d6c70000b8 granted access code b752cad17021b0094a3e9468edd261387f554055b75b1dc63110d9bd5ac720d8
|
118364
|
+
RO2S: Access token b01951f0706ac9326b00ccf4de1a32d42bc60b2e23b3c3e322ac7c68b6588038 granted to client UberClient, identity Batman
|
118365
|
+
RO2S: Client UberClient requested code with scope read write
|
118366
|
+
|
118367
|
+
|
118368
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118369
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000bb"}
|
118370
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000bb]
|
118371
|
+
|
118372
|
+
|
118373
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118374
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000bb"}
|
118375
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118376
|
+
RO2S: Client 4da360a93321e8d6c70000ba granted access code 5396873d6935a52f55bde61174aacb9c0a606dcf566db87744fdbdbaa60da78e
|
118377
|
+
RO2S: Access token c3505304b070dfc359da57bd1eb35f47f8b873edb7b16d962c9d40748cb80950 granted to client UberClient, identity Batman
|
118378
|
+
RO2S: Client UberClient requested code with scope read write
|
118379
|
+
|
118380
|
+
|
118381
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118382
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000bd"}
|
118383
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000bd]
|
118384
|
+
|
118385
|
+
|
118386
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118387
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000bd"}
|
118388
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118389
|
+
RO2S: Client 4da360a93321e8d6c70000bc granted access code 6e5af28e7105bb743f2685cb401071989331ef6e63ca1ccfe24caf29c7032af0
|
118390
|
+
RO2S: Access token d93387217bce9757b88391908def1c8004840eef220da45fb8522515ba5b0042 granted to client UberClient, identity
|
118391
|
+
RO2S: Client UberClient requested code with scope read write
|
118392
|
+
|
118393
|
+
|
118394
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118395
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000bf"}
|
118396
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000bf]
|
118397
|
+
|
118398
|
+
|
118399
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118400
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000bf"}
|
118401
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118402
|
+
RO2S: Client 4da360a93321e8d6c70000be granted access code 6d7adfabe7d971bea48e29b1ad4f11d18fbfee93d27fce1de5da702d0cff4fd0
|
118403
|
+
RO2S: Access token 26a8f5ca2fd1d02b2f3a835ef28b3f77e28a467548f98cfa7ecc185edd534c03 granted to client UberClient, identity
|
118404
|
+
RO2S: Client UberClient requested code with scope read write
|
118405
|
+
|
118406
|
+
|
118407
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118408
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c1"}
|
118409
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000c1]
|
118410
|
+
|
118411
|
+
|
118412
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118413
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c1"}
|
118414
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118415
|
+
RO2S: Client 4da360a93321e8d6c70000c0 granted access code 626febb7f478e1a5d742a4311dce86cf31167b09116df7edbe81e9bc7c0ef086
|
118416
|
+
RO2S: Access token c2abd309232f6764c7e97db381cd50115bf17caf46045556b86e260f798e409d granted to client UberClient, identity
|
118417
|
+
RO2S: Client UberClient requested code with scope read write
|
118418
|
+
|
118419
|
+
|
118420
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118421
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c3"}
|
118422
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000c3]
|
118423
|
+
|
118424
|
+
|
118425
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118426
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c3"}
|
118427
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118428
|
+
RO2S: Client 4da360a93321e8d6c70000c2 granted access code 96b7450dc98b1f40d4e7a41a0f89e51892f6fcb6fd51cc17346fc6546130c334
|
118429
|
+
RO2S: Access token f3d9293cc2e6bf859acdd22a75239b6c45c74e95210719e164316d6ed5bf8324 granted to client UberClient, identity
|
118430
|
+
RO2S: Client UberClient requested code with scope read write
|
118431
|
+
|
118432
|
+
|
118433
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118434
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c5"}
|
118435
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000c5]
|
118436
|
+
|
118437
|
+
|
118438
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118439
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c5"}
|
118440
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118441
|
+
RO2S: Client 4da360a93321e8d6c70000c4 granted access code e6c2f74d71ae97c09ca07fee1c6219fe5b183cbd2d8a2c453b69802ab0300744
|
118442
|
+
RO2S: Access token ec2169fafa5249a778662517cca0319caebc06f93657488ccc1ac92bc3c9ea7e granted to client UberClient, identity
|
118443
|
+
RO2S: Client UberClient requested code with scope read write
|
118444
|
+
|
118445
|
+
|
118446
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118447
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c7"}
|
118448
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000c7]
|
118449
|
+
|
118450
|
+
|
118451
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118452
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c7"}
|
118453
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118454
|
+
RO2S: Client 4da360a93321e8d6c70000c6 granted access code 46e6152c4e9cdc0d2643f281efd7a413d6a793c989c663ba3837c56976286486
|
118455
|
+
RO2S: Access token 71dafdfbe6b4be134554cb8c6eea9d13c1befbcf35e6199bc5d66afecd44ce82 granted to client UberClient, identity
|
118456
|
+
RO2S: Client UberClient requested code with scope read write
|
118457
|
+
|
118458
|
+
|
118459
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:25) [GET]
|
118460
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c9"}
|
118461
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360a93321e8d6c70000c9]
|
118462
|
+
|
118463
|
+
|
118464
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:25) [POST]
|
118465
|
+
Parameters: {"authorization"=>"4da360a93321e8d6c70000c9"}
|
118466
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118467
|
+
RO2S: Client 4da360a93321e8d6c70000c8 granted access code 8f75469b442c7e93ebc3b892b457c86e698d8dbb9e56ea0eabc6e7a714bed6fb
|
118468
|
+
RO2S: Access token 81a8e474ce8ba8129c45db4b67a4d455d142164ac94293daabc967ce2cbb9665 granted to client UberClient, identity Batman
|
118469
|
+
RO2S: Client UberClient requested code with scope read write
|
118470
|
+
|
118471
|
+
|
118472
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118473
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000cb"}
|
118474
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000cb]
|
118475
|
+
|
118476
|
+
|
118477
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118478
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000cb"}
|
118479
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118480
|
+
RO2S: Client 4da360a93321e8d6c70000ca granted access code 477808a057d14963ad8a0606f7bdded49e4cbc2e719f387b65dc2368c97c5588
|
118481
|
+
RO2S: Access token b03a4743989b86ee2d18c4f9ffac9a8c8481e553c0c43a3c5d88db884724a07d granted to client UberClient, identity Batman
|
118482
|
+
RO2S: Client UberClient requested code with scope read write
|
118483
|
+
|
118484
|
+
|
118485
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118486
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000cd"}
|
118487
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000cd]
|
118488
|
+
|
118489
|
+
|
118490
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118491
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000cd"}
|
118492
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118493
|
+
RO2S: Client 4da360aa3321e8d6c70000cc granted access code db24f77e505fefacf1be5e7c92023dc67cf45501b745d05f78c6a19de359e02f
|
118494
|
+
RO2S: Access token 9129de72345ddc5f2ee8e0ee6ea2e37bbe3b3559bdcd7d80e866d7cd9420c380 granted to client UberClient, identity Batman
|
118495
|
+
RO2S: Client UberClient requested code with scope read write
|
118496
|
+
|
118497
|
+
|
118498
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118499
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000cf"}
|
118500
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000cf]
|
118501
|
+
|
118502
|
+
|
118503
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118504
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000cf"}
|
118505
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118506
|
+
RO2S: Client 4da360aa3321e8d6c70000ce granted access code d461b1e9afa5dbcd428084ef42f6e57667c44a69430d5979e22ac34ebf957d8e
|
118507
|
+
RO2S: Access token b6ad1317daad7b3a909c98bd948d06f4d1bd5352f6500b31c144c55d83770516 granted to client UberClient, identity Batman
|
118508
|
+
RO2S: Client UberClient requested code with scope read write
|
118509
|
+
|
118510
|
+
|
118511
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118512
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d1"}
|
118513
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000d1]
|
118514
|
+
|
118515
|
+
|
118516
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118517
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d1"}
|
118518
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118519
|
+
RO2S: Client 4da360aa3321e8d6c70000d0 granted access code 0ece8c8d21560906f1a899cfd3755424b6c1d07d41d0fb6b02278aafbe4d8fe2
|
118520
|
+
RO2S: Access token 9430ec995e4fa45322178db90e4d7111c3948e32edfd8fd61c5616b048a0f9e9 granted to client UberClient, identity Batman
|
118521
|
+
RO2S: Client UberClient requested code with scope read write
|
118522
|
+
|
118523
|
+
|
118524
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118525
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d3"}
|
118526
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000d3]
|
118527
|
+
|
118528
|
+
|
118529
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118530
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d3"}
|
118531
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118532
|
+
RO2S: Client 4da360aa3321e8d6c70000d2 granted access code f9e0ad63a29ad72cb540d6585a53dbeaa061c3fbde9480cc48d51705829baa6c
|
118533
|
+
RO2S: Access token 181e44b1e628597c5cc43aae51e7d867123899e036b346b69158636376b7bccd granted to client UberClient, identity Batman
|
118534
|
+
RO2S: Client UberClient requested code with scope read write
|
118535
|
+
|
118536
|
+
|
118537
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118538
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d5"}
|
118539
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000d5]
|
118540
|
+
|
118541
|
+
|
118542
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118543
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d5"}
|
118544
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118545
|
+
RO2S: Client 4da360aa3321e8d6c70000d4 granted access code fd47e06bbb7921746f4bf164f42a62481876bf54a4338cfee2224df0edd130cf
|
118546
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
118547
|
+
RO2S: Client UberClient requested code with scope read write
|
118548
|
+
|
118549
|
+
|
118550
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118551
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d7"}
|
118552
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000d7]
|
118553
|
+
|
118554
|
+
|
118555
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118556
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d7"}
|
118557
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118558
|
+
RO2S: Client 4da360aa3321e8d6c70000d6 granted access code c9bf41ba6de13336058dab811666e1f48468f4bd5f3136be2941b7ea103b91ea
|
118559
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
118560
|
+
RO2S: Client UberClient requested code with scope read write
|
118561
|
+
|
118562
|
+
|
118563
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118564
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d9"}
|
118565
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000d9]
|
118566
|
+
|
118567
|
+
|
118568
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118569
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000d9"}
|
118570
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118571
|
+
RO2S: Client 4da360aa3321e8d6c70000d8 granted access code dad4c1a45473007a4231c92e4860e0db3bda9bdd51b70b1debe2f6a880c5341e
|
118572
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
118573
|
+
RO2S: Client UberClient requested code with scope read write
|
118574
|
+
|
118575
|
+
|
118576
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118577
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000db"}
|
118578
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000db]
|
118579
|
+
|
118580
|
+
|
118581
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118582
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000db"}
|
118583
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118584
|
+
RO2S: Client 4da360aa3321e8d6c70000da granted access code 9b4d090ccc57dd92d5ff1a37796d5cda79bd3c2dde46fee54b3cbf94630cc70d
|
118585
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
118586
|
+
RO2S: Client UberClient requested code with scope read write
|
118587
|
+
|
118588
|
+
|
118589
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118590
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000dd"}
|
118591
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000dd]
|
118592
|
+
|
118593
|
+
|
118594
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118595
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000dd"}
|
118596
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118597
|
+
RO2S: Client 4da360aa3321e8d6c70000dc granted access code ff5984e2e9a22a4a0d19468693001e42bfab6f5f2606afc0485d536f8c7e27de
|
118598
|
+
RO2S: Access token c9e3ce07b9e5fb172fd7cd3677848bbf98e3803495db39d10aed7409f19c8083 granted to client UberClient, identity Batman
|
118599
|
+
RO2S: HTTP authorization failed invalid_token
|
118600
|
+
RO2S: Client UberClient requested code with scope read write
|
118601
|
+
|
118602
|
+
|
118603
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118604
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000df"}
|
118605
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000df]
|
118606
|
+
|
118607
|
+
|
118608
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118609
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000df"}
|
118610
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118611
|
+
RO2S: Client 4da360aa3321e8d6c70000de granted access code a147bb9d22436cf18248d2a38f40f976b7a821ecd942763d438407f5923e21aa
|
118612
|
+
RO2S: Access token 0e4ed20e7145b564466b229138b932c87a89ee452a3ad35a55de295d9349bed4 granted to client UberClient, identity Batman
|
118613
|
+
RO2S: HTTP authorization failed invalid_token
|
118614
|
+
RO2S: Client UberClient requested code with scope read write
|
118615
|
+
|
118616
|
+
|
118617
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118618
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e1"}
|
118619
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000e1]
|
118620
|
+
|
118621
|
+
|
118622
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118623
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e1"}
|
118624
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118625
|
+
RO2S: Client 4da360aa3321e8d6c70000e0 granted access code b876da5058f7e572b80b27470eac60bbfc47311f6927b4428a0f5d85af99500f
|
118626
|
+
RO2S: Access token f9a7b886c1dfca3125dff206331cee3a832a9cb2fd4518e5d169ef4ea472e279 granted to client UberClient, identity Batman
|
118627
|
+
RO2S: HTTP authorization failed invalid_token
|
118628
|
+
RO2S: Client UberClient requested code with scope read write
|
118629
|
+
|
118630
|
+
|
118631
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118632
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e3"}
|
118633
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000e3]
|
118634
|
+
|
118635
|
+
|
118636
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118637
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e3"}
|
118638
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118639
|
+
RO2S: Client 4da360aa3321e8d6c70000e2 granted access code b7840e9849e0a65688810859eee81962f9c11575561b8dcd5ddf5ac5ad7db663
|
118640
|
+
RO2S: Access token cdd6c6caccae522bd500f439ff53f747ed2be1606482f1af9636db9ad286ccb9 granted to client UberClient, identity Batman
|
118641
|
+
RO2S: HTTP authorization failed invalid_token
|
118642
|
+
RO2S: Client UberClient requested code with scope read write
|
118643
|
+
|
118644
|
+
|
118645
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118646
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e5"}
|
118647
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000e5]
|
118648
|
+
|
118649
|
+
|
118650
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118651
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e5"}
|
118652
|
+
Completed in 1ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
118653
|
+
RO2S: Client 4da360aa3321e8d6c70000e4 granted access code 6d6a4668d9445d654f0e64d058c6a5104cd6c079381ab1411e31cb229d2beb93
|
118654
|
+
RO2S: Access token ef7fb916581cbd3540bcefdb3ab460b83668ccea81227aa5741db2b188a7a02d granted to client UberClient, identity Batman
|
118655
|
+
RO2S: Authorized Batman
|
118656
|
+
|
118657
|
+
|
118658
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118659
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/change]
|
118660
|
+
RO2S: Client UberClient requested code with scope read write
|
118661
|
+
|
118662
|
+
|
118663
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118664
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e7"}
|
118665
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000e7]
|
118666
|
+
|
118667
|
+
|
118668
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118669
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e7"}
|
118670
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118671
|
+
RO2S: Client 4da360aa3321e8d6c70000e6 granted access code 5dee65a1a736f79e580146c6a4e50fb4826fdb6dcde09a974f9ef7b04b7d9133
|
118672
|
+
RO2S: Access token c8f3587e5162c5d589454e132c0345c8babff1fde47d1a72587a213f6a43745d granted to client UberClient, identity Batman
|
118673
|
+
RO2S: Authorized Batman
|
118674
|
+
|
118675
|
+
|
118676
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118677
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
118678
|
+
RO2S: Client UberClient requested code with scope read write
|
118679
|
+
|
118680
|
+
|
118681
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118682
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e9"}
|
118683
|
+
Completed in 4ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000e9]
|
118684
|
+
|
118685
|
+
|
118686
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118687
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000e9"}
|
118688
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118689
|
+
RO2S: Client 4da360aa3321e8d6c70000e8 granted access code c2ec40e31b2c1e1b45bcd1f7adef96d2eca2cfc5812535dce5e00962f3134de3
|
118690
|
+
RO2S: Access token 56084ca6579fd62cee71382d4a31f2cd55b595e590425da2e86de959145ec356 granted to client UberClient, identity Batman
|
118691
|
+
|
118692
|
+
|
118693
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118694
|
+
Parameters: {"oauth_token"=>"56084ca6579fd62cee71382d4a31f2cd55b595e590425da2e86de959145ec356"}
|
118695
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118696
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
118697
|
+
RO2S: Unauthorized request
|
118698
|
+
RO2S: Client UberClient requested code with scope read write
|
118699
|
+
|
118700
|
+
|
118701
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118702
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000eb"}
|
118703
|
+
Completed in 7ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000eb]
|
118704
|
+
|
118705
|
+
|
118706
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118707
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000eb"}
|
118708
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118709
|
+
RO2S: Client 4da360aa3321e8d6c70000ea granted access code 88223063a0ff1310259495cf6c64e5c0ac87b11855d81cd1e980dcb73c5567f6
|
118710
|
+
RO2S: Access token e39f6d4487b6b91fb8ddcee42dc770895e246d357dd45b19bc60be3904a1df05 granted to client UberClient, identity Batman
|
118711
|
+
|
118712
|
+
|
118713
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118714
|
+
Parameters: {"oauth_token"=>"e39f6d4487b6b91fb8ddcee42dc770895e246d357dd45b19bc60be3904a1df05"}
|
118715
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118716
|
+
Completed in 2ms (View: 1 | 401 Unauthorized [http://example.org/change]
|
118717
|
+
RO2S: Unauthorized request
|
118718
|
+
RO2S: Client UberClient requested code with scope read write
|
118719
|
+
|
118720
|
+
|
118721
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118722
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000ed"}
|
118723
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000ed]
|
118724
|
+
|
118725
|
+
|
118726
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118727
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000ed"}
|
118728
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118729
|
+
RO2S: Client 4da360aa3321e8d6c70000ec granted access code 1abf15bf637d9c771d1bd876ae3c20b96c0fc66cb3eca6b7b912fb69e544abc6
|
118730
|
+
RO2S: Access token 03ac9b6908857bfca349aa1e6fd7ed2d0b3185d10b153556b855302b7de025cf granted to client UberClient, identity Batman
|
118731
|
+
|
118732
|
+
|
118733
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118734
|
+
Parameters: {"oauth_token"=>"03ac9b6908857bfca349aa1e6fd7ed2d0b3185d10b153556b855302b7de025cf"}
|
118735
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118736
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
118737
|
+
RO2S: Unauthorized request
|
118738
|
+
RO2S: Client UberClient requested code with scope read write
|
118739
|
+
|
118740
|
+
|
118741
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118742
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000ef"}
|
118743
|
+
Completed in 3ms (View: 2 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000ef]
|
118744
|
+
|
118745
|
+
|
118746
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118747
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000ef"}
|
118748
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118749
|
+
RO2S: Client 4da360aa3321e8d6c70000ee granted access code 67e14f734d8379e6994700b5006c342fabe7890975e9e27fcf430973ee7fbce0
|
118750
|
+
RO2S: Access token 9ffd90828c7e99cbfa9b8e1f15636b44c0f9ca6f08441bcf2d5c561319ce88b8 granted to client UberClient, identity Batman
|
118751
|
+
|
118752
|
+
|
118753
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118754
|
+
Parameters: {"oauth_token"=>"9ffd90828c7e99cbfa9b8e1f15636b44c0f9ca6f08441bcf2d5c561319ce88b8"}
|
118755
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118756
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
118757
|
+
RO2S: Unauthorized request
|
118758
|
+
RO2S: Client UberClient requested code with scope read write
|
118759
|
+
|
118760
|
+
|
118761
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118762
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f1"}
|
118763
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000f1]
|
118764
|
+
|
118765
|
+
|
118766
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118767
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f1"}
|
118768
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118769
|
+
RO2S: Client 4da360aa3321e8d6c70000f0 granted access code 43042282c01d04ca075bdf3583ef92a4c5ded5b026fc852d6704d0b1fecc4e83
|
118770
|
+
RO2S: Access token 339216080c019ac418d243fffce2831b328cf585205f578cd5cc75a2e5598e51 granted to client UberClient, identity Batman
|
118771
|
+
RO2S: HTTP authorization failed invalid_token
|
118772
|
+
RO2S: Client UberClient requested code with scope read write
|
118773
|
+
|
118774
|
+
|
118775
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118776
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f3"}
|
118777
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000f3]
|
118778
|
+
|
118779
|
+
|
118780
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118781
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f3"}
|
118782
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118783
|
+
RO2S: Client 4da360aa3321e8d6c70000f2 granted access code 6d9f8de68f7105133ed0e03a77dd54960fc23cc9322cc71f8b8c717362bcbf00
|
118784
|
+
RO2S: Access token fccba2bf6566d6cf9402e671e0bbbfdcfffee24e2a872f4c1e1915bd4c8897b7 granted to client UberClient, identity Batman
|
118785
|
+
RO2S: HTTP authorization failed invalid_token
|
118786
|
+
RO2S: Client UberClient requested code with scope read write
|
118787
|
+
|
118788
|
+
|
118789
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118790
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f5"}
|
118791
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000f5]
|
118792
|
+
|
118793
|
+
|
118794
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118795
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f5"}
|
118796
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118797
|
+
RO2S: Client 4da360aa3321e8d6c70000f4 granted access code ce4da8987ad6284b5e9d8192506e0b5b74d72d5d906f800d9d7bc0598bc2a4b2
|
118798
|
+
RO2S: Access token a6f3503a391ae7949af2dc9c623bd421318b3ce5323ea9488a2ca4f2c0910910 granted to client UberClient, identity Batman
|
118799
|
+
RO2S: HTTP authorization failed invalid_token
|
118800
|
+
RO2S: Client UberClient requested code with scope read write
|
118801
|
+
|
118802
|
+
|
118803
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118804
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f7"}
|
118805
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000f7]
|
118806
|
+
|
118807
|
+
|
118808
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118809
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f7"}
|
118810
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118811
|
+
RO2S: Client 4da360aa3321e8d6c70000f6 granted access code 12dea488c23d65394476dedc4cb766d4ca6e22f9799c2b56689ebe2b99654198
|
118812
|
+
RO2S: Access token c67529c9450f7084aff2679d2a18d4d5f6bcf6b9ce52a016a293d99d2949b02b granted to client UberClient, identity Batman
|
118813
|
+
RO2S: HTTP authorization failed invalid_token
|
118814
|
+
RO2S: Client UberClient requested code with scope read write
|
118815
|
+
|
118816
|
+
|
118817
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118818
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f9"}
|
118819
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000f9]
|
118820
|
+
|
118821
|
+
|
118822
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118823
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000f9"}
|
118824
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118825
|
+
RO2S: Client 4da360aa3321e8d6c70000f8 granted access code 6a9101ad2b400fccdf0d263e4891c393638abf4072c0cb2bb850a235ed679ffb
|
118826
|
+
RO2S: Access token 24da29e8b0b1bfcb5b8a5c807992fe080acf2f70a9f3b6f3fde80f1c28081616 granted to client UberClient, identity Batman
|
118827
|
+
RO2S: Authorized Batman
|
118828
|
+
|
118829
|
+
|
118830
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118831
|
+
Parameters: {"oauth_token"=>"24da29e8b0b1bfcb5b8a5c807992fe080acf2f70a9f3b6f3fde80f1c28081616"}
|
118832
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
118833
|
+
RO2S: Client UberClient requested code with scope read write
|
118834
|
+
|
118835
|
+
|
118836
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:26) [GET]
|
118837
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000fb"}
|
118838
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000fb]
|
118839
|
+
|
118840
|
+
|
118841
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118842
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000fb"}
|
118843
|
+
Completed in 3ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
118844
|
+
RO2S: Client 4da360aa3321e8d6c70000fa granted access code dff4f6b669b3a9eff2ae15a97c3e3c62bf1a4e3940edbe42a507820cbafa7724
|
118845
|
+
RO2S: Access token 9c2a6cfaa71139dadc49250b69f5a7033856800f52621e28285aea44bd190883 granted to client UberClient, identity Batman
|
118846
|
+
RO2S: Authorized Batman
|
118847
|
+
|
118848
|
+
|
118849
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:26) [POST]
|
118850
|
+
Parameters: {"oauth_token"=>"9c2a6cfaa71139dadc49250b69f5a7033856800f52621e28285aea44bd190883"}
|
118851
|
+
Completed in 5ms (View: 3 | 200 OK [http://example.org/change]
|
118852
|
+
RO2S: Client UberClient requested code with scope read write
|
118853
|
+
|
118854
|
+
|
118855
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118856
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000fd"}
|
118857
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360aa3321e8d6c70000fd]
|
118858
|
+
|
118859
|
+
|
118860
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118861
|
+
Parameters: {"authorization"=>"4da360aa3321e8d6c70000fd"}
|
118862
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118863
|
+
RO2S: Client 4da360aa3321e8d6c70000fc granted access code 1c2eebe1c01b4c66213916d435079411a0dc86b982f4cb4fabfe8ecf59c99f63
|
118864
|
+
RO2S: Access token 9f76294320b0d7b61d8c53864b08bf164b14c6cd88acdb14537e1f0d4b3c60ac granted to client UberClient, identity Batman
|
118865
|
+
|
118866
|
+
|
118867
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118868
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118869
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
118870
|
+
RO2S: Unauthorized request
|
118871
|
+
RO2S: Client UberClient requested code with scope read write
|
118872
|
+
|
118873
|
+
|
118874
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118875
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c70000ff"}
|
118876
|
+
Completed in 9ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c70000ff]
|
118877
|
+
|
118878
|
+
|
118879
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118880
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c70000ff"}
|
118881
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118882
|
+
RO2S: Client 4da360ab3321e8d6c70000fe granted access code 5a8fec9e5c3f657734339c8e93afeeca687db39f80aa127aff36d5c8efda0b9a
|
118883
|
+
RO2S: Access token 943b2788e36682ed22a0b6889de77a99e767c47a410ac5bf1aca579afcc6bc3a granted to client UberClient, identity Batman
|
118884
|
+
|
118885
|
+
|
118886
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118887
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118888
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
118889
|
+
RO2S: Unauthorized request
|
118890
|
+
RO2S: Client UberClient requested code with scope read write
|
118891
|
+
|
118892
|
+
|
118893
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118894
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000101"}
|
118895
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000101]
|
118896
|
+
|
118897
|
+
|
118898
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118899
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000101"}
|
118900
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118901
|
+
RO2S: Client 4da360ab3321e8d6c7000100 granted access code 35a23e7fe97464539371f63e31f9751779aeb532d2287af50e966956ece46b9a
|
118902
|
+
RO2S: Access token 0be35a618b5da5b6a4e6fb449a8673de8a4b9abcb0f1fa2d4decf35e53567966 granted to client UberClient, identity Batman
|
118903
|
+
|
118904
|
+
|
118905
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118906
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118907
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
118908
|
+
RO2S: Unauthorized request
|
118909
|
+
RO2S: Client UberClient requested code with scope read write
|
118910
|
+
|
118911
|
+
|
118912
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118913
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000103"}
|
118914
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000103]
|
118915
|
+
|
118916
|
+
|
118917
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118918
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000103"}
|
118919
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118920
|
+
RO2S: Client 4da360ab3321e8d6c7000102 granted access code cf14c373bdf2cd7689ceab4de1ee1f568ff5321784e4a0d6fe8b09dd875c6090
|
118921
|
+
RO2S: Access token 9552ad1dfabd8d53c2f2e41a343cda9c129a8f5866cac2575c35a1ca0c405b51 granted to client UberClient, identity Batman
|
118922
|
+
|
118923
|
+
|
118924
|
+
Processing ApiController#change (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118925
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
118926
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
118927
|
+
RO2S: Unauthorized request
|
118928
|
+
RO2S: Client UberClient requested code with scope read write
|
118929
|
+
|
118930
|
+
|
118931
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118932
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000105"}
|
118933
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000105]
|
118934
|
+
|
118935
|
+
|
118936
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118937
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000105"}
|
118938
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118939
|
+
RO2S: Client 4da360ab3321e8d6c7000104 granted access code 5d75e62dde74e36c904b68ae72c988a11e161f7808adef683799875be280e852
|
118940
|
+
RO2S: Access token 28f79ea622635f9d2b1750baf2b21d5f9fa0918e4841fe3bdbf206a228d71579 granted to client UberClient, identity Batman
|
118941
|
+
RO2S: Authorized Batman
|
118942
|
+
|
118943
|
+
|
118944
|
+
Processing ApiController#calc (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118945
|
+
Filter chain halted as [#<Proc:0x00000100bd9128@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
118946
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
118947
|
+
RO2S: Client UberClient requested code with scope read write
|
118948
|
+
|
118949
|
+
|
118950
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118951
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000107"}
|
118952
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000107]
|
118953
|
+
|
118954
|
+
|
118955
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118956
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000107"}
|
118957
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118958
|
+
RO2S: Client 4da360ab3321e8d6c7000106 granted access code 80bb0b783e235575ea349774c256fa7ac8da3dddbb419b9bbcbc2f6585610f88
|
118959
|
+
RO2S: Access token f2a09aaf0836ae5bfdbb245c5cf84ef79c69487677e64c4fa2b2641aca45c896 granted to client UberClient, identity Batman
|
118960
|
+
RO2S: Authorized Batman
|
118961
|
+
|
118962
|
+
|
118963
|
+
Processing ApiController#calc (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118964
|
+
Filter chain halted as [#<Proc:0x00000100bd9128@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
118965
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
118966
|
+
RO2S: Client UberClient requested code with scope read write
|
118967
|
+
|
118968
|
+
|
118969
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118970
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000109"}
|
118971
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000109]
|
118972
|
+
|
118973
|
+
|
118974
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118975
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000109"}
|
118976
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118977
|
+
RO2S: Client 4da360ab3321e8d6c7000108 granted access code 95b70f320716b1c68cedc21b901e5b297270e4f28bc3357e8373512e8d8a2555
|
118978
|
+
RO2S: Access token 9a7bfd90059b3b91221cc8e98c07fa96823c64252b227da489e3077739d7906c granted to client UberClient, identity Batman
|
118979
|
+
RO2S: Authorized Batman
|
118980
|
+
|
118981
|
+
|
118982
|
+
Processing ApiController#calc (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118983
|
+
Filter chain halted as [#<Proc:0x00000100bd9128@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
118984
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
118985
|
+
RO2S: Client UberClient requested code with scope read write
|
118986
|
+
|
118987
|
+
|
118988
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
118989
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c700010b"}
|
118990
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c700010b]
|
118991
|
+
|
118992
|
+
|
118993
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
118994
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c700010b"}
|
118995
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
118996
|
+
RO2S: Client 4da360ab3321e8d6c700010a granted access code 8fc5ae582a3abdc358a5ceeb88a16eb145f6c331c415b733c25e44cc33bf5e31
|
118997
|
+
RO2S: Access token e8a63d562f4259dc45d6695aac84674f858eddb40fe29d1e3c34e67243fa12f0 granted to client UberClient, identity Batman
|
118998
|
+
RO2S: Authorized Batman
|
118999
|
+
|
119000
|
+
|
119001
|
+
Processing ApiController#calc (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119002
|
+
Filter chain halted as [#<Proc:0x00000100bd9128@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
119003
|
+
Completed in 2ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
119004
|
+
RO2S: Client UberClient requested code with scope read write
|
119005
|
+
|
119006
|
+
|
119007
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119008
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c700010d"}
|
119009
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c700010d]
|
119010
|
+
|
119011
|
+
|
119012
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
119013
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c700010d"}
|
119014
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119015
|
+
RO2S: Client 4da360ab3321e8d6c700010c granted access code fb0c4c8da7229691593be9815453366a63fe028492511ac35cec52ca2af8de5c
|
119016
|
+
RO2S: Access token 5bd10affa72afda8f26bb403d58a1e9402f8f1620e1733d18463f2740522d4a4 granted to client UberClient, identity Batman
|
119017
|
+
RO2S: Authorized Batman
|
119018
|
+
|
119019
|
+
|
119020
|
+
Processing ApiController#calc (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119021
|
+
Filter chain halted as [#<Proc:0x00000100bd9128@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
119022
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
119023
|
+
RO2S: Client UberClient requested code with scope read write
|
119024
|
+
|
119025
|
+
|
119026
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119027
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c700010f"}
|
119028
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c700010f]
|
119029
|
+
|
119030
|
+
|
119031
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
119032
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c700010f"}
|
119033
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119034
|
+
RO2S: Client 4da360ab3321e8d6c700010e granted access code 347ef547c64f353cf3ab71049569c9fd490b1d68f11d2d8e918d598ec4df93fd
|
119035
|
+
RO2S: Access token 96b14178306ba72fb63ea2bf7892ae152c70da84eeae359162aeb0a07645c249 granted to client UberClient, identity Batman
|
119036
|
+
|
119037
|
+
|
119038
|
+
Processing ApiController#list_tokens (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119039
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/list_tokens]
|
119040
|
+
RO2S: Client UberClient requested code with scope read write
|
119041
|
+
|
119042
|
+
|
119043
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119044
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000111"}
|
119045
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000111]
|
119046
|
+
|
119047
|
+
|
119048
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
119049
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000111"}
|
119050
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119051
|
+
RO2S: Client 4da360ab3321e8d6c7000110 granted access code 6251eff409276f8761ea18191aa0cdde57937442df8420dbe986294cc0b6a9e8
|
119052
|
+
RO2S: Access token 87746f52e58623ef3f062d385a495e3f9e2cd0a3a02a78cae12102fe5b1d6e0b granted to client UberClient, identity Batman
|
119053
|
+
|
119054
|
+
|
119055
|
+
Processing ApiController#list_tokens (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119056
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/list_tokens]
|
119057
|
+
RO2S: Client UberClient requested code with scope read write
|
119058
|
+
|
119059
|
+
|
119060
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119061
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000113"}
|
119062
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000113]
|
119063
|
+
|
119064
|
+
|
119065
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
119066
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000113"}
|
119067
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119068
|
+
RO2S: Client 4da360ab3321e8d6c7000112 granted access code 58e2c6cfc258ed62e200919dbd9adcfafcbbc2d184fa919e3dd7c9cc433e8f64
|
119069
|
+
RO2S: Access token 2e7b148e0142aef78dc1ddf043536c8d7cf398c6acc31d192c5d776fd0a9b597 granted to client UberClient, identity Batman
|
119070
|
+
RO2S: HTTP authorization failed invalid_token
|
119071
|
+
RO2S: Client UberClient requested code with scope read write
|
119072
|
+
|
119073
|
+
|
119074
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119075
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000115"}
|
119076
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000115]
|
119077
|
+
|
119078
|
+
|
119079
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
119080
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000115"}
|
119081
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119082
|
+
RO2S: Client 4da360ab3321e8d6c7000114 granted access code c93086c1f582d9b2ff002e4469960dc48525b522a4fd27cac89c610bce1700cf
|
119083
|
+
RO2S: Access token f804fc99eaf8cfb9691fb6880edd52c4679a1662040e2b03a0db7c8e42f0913b granted to client UberClient, identity Batman
|
119084
|
+
RO2S: HTTP authorization failed invalid_token
|
119085
|
+
RO2S: Client UberClient requested code with scope read write
|
119086
|
+
|
119087
|
+
|
119088
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119089
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000117"}
|
119090
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000117]
|
119091
|
+
|
119092
|
+
|
119093
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
119094
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000117"}
|
119095
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119096
|
+
RO2S: Client 4da360ab3321e8d6c7000116 granted access code d07f215039034e4afb4b1093f186c502df1534b4bcd80844b504a8f81c4feb19
|
119097
|
+
RO2S: Access token 01f4abeb3156588852e5571d77d0affdcf38c6f46299fb449649ce9709e0722b granted to client UberClient, identity Batman
|
119098
|
+
RO2S: HTTP authorization failed invalid_token
|
119099
|
+
RO2S: Client UberClient requested code with scope read write
|
119100
|
+
|
119101
|
+
|
119102
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:27) [GET]
|
119103
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000119"}
|
119104
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ab3321e8d6c7000119]
|
119105
|
+
|
119106
|
+
|
119107
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:27) [POST]
|
119108
|
+
Parameters: {"authorization"=>"4da360ab3321e8d6c7000119"}
|
119109
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119110
|
+
RO2S: Client 4da360ab3321e8d6c7000118 granted access code 346ed8f33780db7f98671202414a58759fbe3922e5b216e39451434a107ac486
|
119111
|
+
RO2S: Access token c3a35877d6a7970ca641957ddb54c507031fd9354357eaa1cecbd5ae6d41f6e4 granted to client UberClient, identity Batman
|
119112
|
+
RO2S: HTTP authorization failed invalid_token
|
119113
|
+
RO2S: Client UberClient requested code with scope read write
|
119114
|
+
|
119115
|
+
|
119116
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119117
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700011b"}
|
119118
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700011b]
|
119119
|
+
|
119120
|
+
|
119121
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119122
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700011b"}
|
119123
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119124
|
+
RO2S: Client 4da360ac3321e8d6c700011a granted access code e22bf6c11a881e3f018ed18398a95a731fb0e25f86bcd2bdf859eb0eb5c0c87c
|
119125
|
+
RO2S: Access token 9b1f183f85de3c9b3ef52f967104d505b582996d5cfe25cd1d056345f1ccb54c granted to client UberClient, identity Batman
|
119126
|
+
RO2S: HTTP authorization failed invalid_token
|
119127
|
+
RO2S: Client UberClient requested code with scope read write
|
119128
|
+
|
119129
|
+
|
119130
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119131
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700011d"}
|
119132
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700011d]
|
119133
|
+
|
119134
|
+
|
119135
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119136
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700011d"}
|
119137
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119138
|
+
RO2S: Client 4da360ac3321e8d6c700011c granted access code 297974e24e8c2b7703b2a3a78a6d7015ec7f39122476a0976cfb18547935788e
|
119139
|
+
RO2S: Access token b8c1b99fc2631935255249d97948aac0528a4b3cb22b7113a2770fccbd3266f1 granted to client UberClient, identity Batman
|
119140
|
+
RO2S: HTTP authorization failed invalid_token
|
119141
|
+
RO2S: Client UberClient requested code with scope read write
|
119142
|
+
|
119143
|
+
|
119144
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119145
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700011f"}
|
119146
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700011f]
|
119147
|
+
|
119148
|
+
|
119149
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119150
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700011f"}
|
119151
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
119152
|
+
RO2S: Client 4da360ac3321e8d6c700011e granted access code a06f50ce43c2e16f98f66e6bdf47c644cdcec310c7a49f5cbc2c7d2a8c67617c
|
119153
|
+
RO2S: Access token 47f2c8fe3b338cbc42dfcca93abed4ca188d59494589d0acec6a91ab03117025 granted to client UberClient, identity Batman
|
119154
|
+
RO2S: HTTP authorization failed invalid_token
|
119155
|
+
RO2S: Client UberClient requested code with scope read write
|
119156
|
+
|
119157
|
+
|
119158
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119159
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000121"}
|
119160
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000121]
|
119161
|
+
|
119162
|
+
|
119163
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119164
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000121"}
|
119165
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119166
|
+
RO2S: Client 4da360ac3321e8d6c7000120 granted access code 581968cd661e6f8129b629a5a235dc939eaa550b3c5ab298b87d74b9732155e6
|
119167
|
+
RO2S: Access token 19e7f1fb6559ce8f14129efa6fe7d29456426ddb5ac77bcb025658e8f1bec8f6 granted to client UberClient, identity Batman
|
119168
|
+
RO2S: HTTP authorization failed invalid_token
|
119169
|
+
RO2S: Client UberClient requested code with scope read write
|
119170
|
+
|
119171
|
+
|
119172
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119173
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000123"}
|
119174
|
+
Completed in 4ms (View: 3 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000123]
|
119175
|
+
|
119176
|
+
|
119177
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119178
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000123"}
|
119179
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119180
|
+
RO2S: Client 4da360ac3321e8d6c7000122 granted access code 8405501aa0f59cdb4fb5b1adcb9ef7d2482c333b05f886c98739ea3b32a0dccc
|
119181
|
+
RO2S: Access token 5f2b02669e4bd769076dd0dda2f11d5736195b1dbef900d64dbdcc2f25c0ab72 granted to client UberClient, identity Batman
|
119182
|
+
RO2S: HTTP authorization failed invalid_token
|
119183
|
+
RO2S: Client UberClient requested code with scope read write
|
119184
|
+
|
119185
|
+
|
119186
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119187
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000125"}
|
119188
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000125]
|
119189
|
+
|
119190
|
+
|
119191
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119192
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000125"}
|
119193
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119194
|
+
RO2S: Client 4da360ac3321e8d6c7000124 granted access code 6dc2f669dd63be99fd55f6268e9b2802fd1ae371c3680d8afe5b87eec55b73d0
|
119195
|
+
RO2S: Access token 15e45d66aa6755c5a1016d51231c57c8b3adfc637a43f5ae6afe0d96f7f294ff granted to client UberClient, identity Batman
|
119196
|
+
RO2S: HTTP authorization failed invalid_token
|
119197
|
+
RO2S: Client UberClient requested code with scope read write
|
119198
|
+
|
119199
|
+
|
119200
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119201
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000127"}
|
119202
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000127]
|
119203
|
+
|
119204
|
+
|
119205
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119206
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000127"}
|
119207
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119208
|
+
RO2S: Client 4da360ac3321e8d6c7000126 granted access code 0db0031d5a3ecfcd905579387b633c74c6320b5376bf2b21c809b9d54694ac3c
|
119209
|
+
RO2S: Access token 1bba3e924db6957aa3d0f3bb54612478b499048af42cfa9d2bb6c72fc11b3a7e granted to client UberClient, identity Batman
|
119210
|
+
RO2S: HTTP authorization failed invalid_token
|
119211
|
+
RO2S: Client UberClient requested code with scope read write
|
119212
|
+
|
119213
|
+
|
119214
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119215
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000129"}
|
119216
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000129]
|
119217
|
+
|
119218
|
+
|
119219
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119220
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000129"}
|
119221
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
119222
|
+
RO2S: Client 4da360ac3321e8d6c7000128 granted access code 3f4f445340e22afa81509c6759f80ab5194990314f5bc60dde138908d0f0c34e
|
119223
|
+
RO2S: Access token bd002fe69f60ce3acfc3daf67293cbe5cd2fec7df48d48bd5738e7dedacf7b3c granted to client UberClient, identity Batman
|
119224
|
+
RO2S: HTTP authorization failed invalid_token
|
119225
|
+
RO2S: Client UberClient requested code with scope read write
|
119226
|
+
|
119227
|
+
|
119228
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119229
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700012b"}
|
119230
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700012b]
|
119231
|
+
|
119232
|
+
|
119233
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119234
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700012b"}
|
119235
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119236
|
+
RO2S: Client 4da360ac3321e8d6c700012a granted access code 1baa7cc4ce00ffcf884384a36c3a53b03536ddc56623cc60e292e8a36a9c0f50
|
119237
|
+
RO2S: Access token 7324ed3dd1d7d0b6d405be49e202f36a616b7305125bb5dd2e70a07e261c318d granted to client UberClient, identity Batman
|
119238
|
+
RO2S: Authorized Batman
|
119239
|
+
|
119240
|
+
|
119241
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119242
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/private]
|
119243
|
+
RO2S: Client UberClient requested code with scope read write
|
119244
|
+
|
119245
|
+
|
119246
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119247
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700012d"}
|
119248
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700012d]
|
119249
|
+
|
119250
|
+
|
119251
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119252
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700012d"}
|
119253
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119254
|
+
RO2S: Client 4da360ac3321e8d6c700012c granted access code d42648ac0b3075e091ac02eccb140993b4781bb7bda311ae18dd610ab83105dd
|
119255
|
+
RO2S: Access token 272acc70485a7aea3cb24ad795f1435c61f72eee365f28b517ae5790b3efdfbe granted to client UberClient, identity Batman
|
119256
|
+
RO2S: Authorized Batman
|
119257
|
+
|
119258
|
+
|
119259
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119260
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
119261
|
+
RO2S: Client UberClient requested code with scope read write
|
119262
|
+
|
119263
|
+
|
119264
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119265
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700012f"}
|
119266
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700012f]
|
119267
|
+
|
119268
|
+
|
119269
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119270
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700012f"}
|
119271
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119272
|
+
RO2S: Client 4da360ac3321e8d6c700012e granted access code dac41d7d40925d8c7da8565c154abb416e3b2414211c3a535e85ce57aa594b4f
|
119273
|
+
RO2S: Access token f3d3fa21a069e8d1d922afe7be3c270bd59e54a790fcde25b11c0990c09e25d6 granted to client UberClient, identity Batman
|
119274
|
+
|
119275
|
+
|
119276
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119277
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119278
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
119279
|
+
RO2S: Unauthorized request
|
119280
|
+
RO2S: Client UberClient requested code with scope read write
|
119281
|
+
|
119282
|
+
|
119283
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119284
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000131"}
|
119285
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000131]
|
119286
|
+
|
119287
|
+
|
119288
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119289
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000131"}
|
119290
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119291
|
+
RO2S: Client 4da360ac3321e8d6c7000130 granted access code 38ca6f32528edc65bff7632e3d399cd44ffffb209c334d2f2029bde4210ab0d7
|
119292
|
+
RO2S: Access token 68f10261a9cba3f2ca7fba867f77de784e0be20b34ddaca3d847b4317f90198d granted to client UberClient, identity Batman
|
119293
|
+
|
119294
|
+
|
119295
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119296
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119297
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
119298
|
+
RO2S: Unauthorized request
|
119299
|
+
RO2S: Client UberClient requested code with scope read write
|
119300
|
+
|
119301
|
+
|
119302
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119303
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000133"}
|
119304
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000133]
|
119305
|
+
|
119306
|
+
|
119307
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119308
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000133"}
|
119309
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119310
|
+
RO2S: Client 4da360ac3321e8d6c7000132 granted access code c26c8f05b52f5315776fdc712583d67e2e2f855b23a619895cbc52939430c932
|
119311
|
+
RO2S: Access token ca74aea811f42bb30a1fc4f8f7b0e3dbea9131a55c9b938bfdd3783e5a2c71eb granted to client UberClient, identity Batman
|
119312
|
+
|
119313
|
+
|
119314
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119315
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119316
|
+
Completed in 1ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
119317
|
+
RO2S: Unauthorized request
|
119318
|
+
RO2S: Client UberClient requested code with scope read write
|
119319
|
+
|
119320
|
+
|
119321
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119322
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000135"}
|
119323
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000135]
|
119324
|
+
|
119325
|
+
|
119326
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119327
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000135"}
|
119328
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119329
|
+
RO2S: Client 4da360ac3321e8d6c7000134 granted access code 36e1c4f36d679a8c7be558085dec5039d8d216cc17b64c033365d0bb47710fed
|
119330
|
+
RO2S: Access token af478c0350aee27468f130e30c4529e8cf7ea5d0340c32200efd3b3a2ddbeed0 granted to client UberClient, identity Batman
|
119331
|
+
|
119332
|
+
|
119333
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119334
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119335
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
119336
|
+
RO2S: Unauthorized request
|
119337
|
+
RO2S: Client UberClient requested code with scope read write
|
119338
|
+
|
119339
|
+
|
119340
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119341
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000137"}
|
119342
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000137]
|
119343
|
+
|
119344
|
+
|
119345
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119346
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000137"}
|
119347
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119348
|
+
RO2S: Client 4da360ac3321e8d6c7000136 granted access code 7dd56e7b07b3fdfeff4dfeeaa593109cb1c133cf166f5c49f013c3685e324f14
|
119349
|
+
RO2S: Access token d3bb4a9b28d4c7b57d14967ad3592ecc85bcdb85eae2ce758ca4eb1f74ae433c granted to client UberClient, identity Batman
|
119350
|
+
|
119351
|
+
|
119352
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119353
|
+
Parameters: {"oauth_token"=>"d3bb4a9b28d4c7b57d14967ad3592ecc85bcdb85eae2ce758ca4eb1f74ae433c"}
|
119354
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119355
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=d3bb4a9b28d4c7b57d14967ad3592ecc85bcdb85eae2ce758ca4eb1f74ae433c]
|
119356
|
+
RO2S: Unauthorized request
|
119357
|
+
RO2S: Client UberClient requested code with scope read write
|
119358
|
+
|
119359
|
+
|
119360
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119361
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000139"}
|
119362
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000139]
|
119363
|
+
|
119364
|
+
|
119365
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119366
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000139"}
|
119367
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119368
|
+
RO2S: Client 4da360ac3321e8d6c7000138 granted access code b6304cfe52e43df7f5932187b6fb973bf75b9c5bf0ee18db288d20ae10f8b66e
|
119369
|
+
RO2S: Access token 917724ab0e1011d915fedf23600d3a8f07b7f2afa472a88f110330e667284f82 granted to client UberClient, identity Batman
|
119370
|
+
|
119371
|
+
|
119372
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119373
|
+
Parameters: {"oauth_token"=>"917724ab0e1011d915fedf23600d3a8f07b7f2afa472a88f110330e667284f82"}
|
119374
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119375
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=917724ab0e1011d915fedf23600d3a8f07b7f2afa472a88f110330e667284f82]
|
119376
|
+
RO2S: Unauthorized request
|
119377
|
+
RO2S: Client UberClient requested code with scope read write
|
119378
|
+
|
119379
|
+
|
119380
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119381
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700013b"}
|
119382
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700013b]
|
119383
|
+
|
119384
|
+
|
119385
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119386
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700013b"}
|
119387
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119388
|
+
RO2S: Client 4da360ac3321e8d6c700013a granted access code 78e29c07e4c5cd99113d335304003f738ac0597116cc1da914a870c3f6c09c67
|
119389
|
+
RO2S: Access token 1159527cf341ca120250435a7bbc1e5706f1732b2c2e281bdc0496727db30bd6 granted to client UberClient, identity Batman
|
119390
|
+
|
119391
|
+
|
119392
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119393
|
+
Parameters: {"oauth_token"=>"1159527cf341ca120250435a7bbc1e5706f1732b2c2e281bdc0496727db30bd6"}
|
119394
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119395
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=1159527cf341ca120250435a7bbc1e5706f1732b2c2e281bdc0496727db30bd6]
|
119396
|
+
RO2S: Unauthorized request
|
119397
|
+
RO2S: Client UberClient requested code with scope read write
|
119398
|
+
|
119399
|
+
|
119400
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119401
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700013d"}
|
119402
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700013d]
|
119403
|
+
|
119404
|
+
|
119405
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119406
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700013d"}
|
119407
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
119408
|
+
RO2S: Client 4da360ac3321e8d6c700013c granted access code 791dd1ebcbb31c76b4f338aff74af8b7bf9fdb18d6d6d7671706903942afbc05
|
119409
|
+
RO2S: Access token 54a248cd386fb4ad864031d2ebaf6e562e74221346bae50e864a143ca437abd4 granted to client UberClient, identity Batman
|
119410
|
+
|
119411
|
+
|
119412
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119413
|
+
Parameters: {"oauth_token"=>"54a248cd386fb4ad864031d2ebaf6e562e74221346bae50e864a143ca437abd4"}
|
119414
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
119415
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=54a248cd386fb4ad864031d2ebaf6e562e74221346bae50e864a143ca437abd4]
|
119416
|
+
RO2S: Unauthorized request
|
119417
|
+
RO2S: Client UberClient requested code with scope read write
|
119418
|
+
|
119419
|
+
|
119420
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119421
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700013f"}
|
119422
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700013f]
|
119423
|
+
|
119424
|
+
|
119425
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119426
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700013f"}
|
119427
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119428
|
+
RO2S: Client 4da360ac3321e8d6c700013e granted access code fd53fc3fe05d4f15e5fb64ce39d02175d86a6e79f5ed785f68f08c1956e37d3c
|
119429
|
+
RO2S: Access token 9077ef7aa77d7f4562285b5395e6571d00c7ba0d71da8f89b252bc2f83c0976d granted to client UberClient, identity Batman
|
119430
|
+
RO2S: HTTP authorization failed invalid_token
|
119431
|
+
RO2S: Client UberClient requested code with scope read write
|
119432
|
+
|
119433
|
+
|
119434
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119435
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000141"}
|
119436
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000141]
|
119437
|
+
|
119438
|
+
|
119439
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119440
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000141"}
|
119441
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119442
|
+
RO2S: Client 4da360ac3321e8d6c7000140 granted access code 42a559ae0597ae7e036b4c5847d80ab7b33a6e5dc49e33c00af105a1f2d50400
|
119443
|
+
RO2S: Access token d8adc774ec42c7d32ad89568a2a06f735d3e21b8575a406655de68bddab3bde0 granted to client UberClient, identity Batman
|
119444
|
+
RO2S: HTTP authorization failed invalid_token
|
119445
|
+
RO2S: Client UberClient requested code with scope read write
|
119446
|
+
|
119447
|
+
|
119448
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119449
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000143"}
|
119450
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000143]
|
119451
|
+
|
119452
|
+
|
119453
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119454
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000143"}
|
119455
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119456
|
+
RO2S: Client 4da360ac3321e8d6c7000142 granted access code 3e9071b4db90a1f7315db5fd2256d15a5dfc04bc010efafd7af3745898e97cee
|
119457
|
+
RO2S: Access token 86218c5bcd329683112dc8c62b9f15d81bbfba0cf1b89d547b9ab10493085cab granted to client UberClient, identity Batman
|
119458
|
+
RO2S: HTTP authorization failed invalid_token
|
119459
|
+
RO2S: Client UberClient requested code with scope read write
|
119460
|
+
|
119461
|
+
|
119462
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119463
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000145"}
|
119464
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000145]
|
119465
|
+
|
119466
|
+
|
119467
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119468
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000145"}
|
119469
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119470
|
+
RO2S: Client 4da360ac3321e8d6c7000144 granted access code ea91539b98147d8deb92c81dabb022428bf58d6c0a9c25a007c5b730b42b8d2b
|
119471
|
+
RO2S: Access token d657ab284a624d245e7d59abea25526cbf681db1b778a99b46b41b396a97faf5 granted to client UberClient, identity Batman
|
119472
|
+
RO2S: HTTP authorization failed invalid_token
|
119473
|
+
RO2S: Client UberClient requested code with scope read write
|
119474
|
+
|
119475
|
+
|
119476
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119477
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000147"}
|
119478
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000147]
|
119479
|
+
|
119480
|
+
|
119481
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119482
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000147"}
|
119483
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119484
|
+
RO2S: Client 4da360ac3321e8d6c7000146 granted access code 16332858f0c4ce2432087f7fecbd64dd8cbe662cf2cd462d3d00fbb47dfc66f1
|
119485
|
+
RO2S: Access token 721bdf2d6f2e6a626da8355c170e07d9f7a159e7858bf38a81fd2d2b52f78a6d granted to client UberClient, identity Batman
|
119486
|
+
RO2S: Authorized Batman
|
119487
|
+
|
119488
|
+
|
119489
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119490
|
+
Parameters: {"oauth_token"=>"721bdf2d6f2e6a626da8355c170e07d9f7a159e7858bf38a81fd2d2b52f78a6d"}
|
119491
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private?oauth_token=721bdf2d6f2e6a626da8355c170e07d9f7a159e7858bf38a81fd2d2b52f78a6d]
|
119492
|
+
RO2S: Client UberClient requested code with scope read write
|
119493
|
+
|
119494
|
+
|
119495
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119496
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000149"}
|
119497
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000149]
|
119498
|
+
|
119499
|
+
|
119500
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119501
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000149"}
|
119502
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119503
|
+
RO2S: Client 4da360ac3321e8d6c7000148 granted access code dbd224c0cc4a5d106d1a7a0fe4fd74d6b7dc4029be5c135cea4bf3b9f9ee1d96
|
119504
|
+
RO2S: Access token 219ab9f0351691df13159a6fdf6cd404ba56d82d2d4d1743a72e1ea27c6d7c24 granted to client UberClient, identity Batman
|
119505
|
+
RO2S: Authorized Batman
|
119506
|
+
|
119507
|
+
|
119508
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119509
|
+
Parameters: {"oauth_token"=>"219ab9f0351691df13159a6fdf6cd404ba56d82d2d4d1743a72e1ea27c6d7c24"}
|
119510
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private?oauth_token=219ab9f0351691df13159a6fdf6cd404ba56d82d2d4d1743a72e1ea27c6d7c24]
|
119511
|
+
RO2S: Client UberClient requested code with scope read write
|
119512
|
+
|
119513
|
+
|
119514
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119515
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700014b"}
|
119516
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700014b]
|
119517
|
+
|
119518
|
+
|
119519
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119520
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700014b"}
|
119521
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119522
|
+
RO2S: Client 4da360ac3321e8d6c700014a granted access code 4b85f2c0b06fc34dda6a460e2dc1b31c27ca968724c7230df112f688eedac9e2
|
119523
|
+
RO2S: Access token f82c0a5043bf72a831d137ed0d642a876a8abde9c4703698191d6e3925d5c8b0 granted to client UberClient, identity Batman
|
119524
|
+
|
119525
|
+
|
119526
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119527
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119528
|
+
RO2S: Client UberClient requested code with scope read write
|
119529
|
+
|
119530
|
+
|
119531
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119532
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700014d"}
|
119533
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700014d]
|
119534
|
+
|
119535
|
+
|
119536
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119537
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700014d"}
|
119538
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119539
|
+
RO2S: Client 4da360ac3321e8d6c700014c granted access code c26b316f895e9949222667c5883e6afae54b1692d05700d8a77d1a9b0babe52e
|
119540
|
+
RO2S: Access token 2833ae2ebc0bc6cf04fa2b8fd45f13ef2a644057b1fa82f2f1a7e0e1784befbd granted to client UberClient, identity Batman
|
119541
|
+
|
119542
|
+
|
119543
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119544
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119545
|
+
RO2S: Client UberClient requested code with scope read write
|
119546
|
+
|
119547
|
+
|
119548
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119549
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700014f"}
|
119550
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c700014f]
|
119551
|
+
|
119552
|
+
|
119553
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119554
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c700014f"}
|
119555
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119556
|
+
RO2S: Client 4da360ac3321e8d6c700014e granted access code a08d5ecd2e0f308861f50abb1df9847694eee3b8c60caeb85d80b42429082406
|
119557
|
+
RO2S: Access token 3daeee9dc04dbd0d75b09c59a1eff3a9f262df0c56d1294a13608517d1cf59cc granted to client UberClient, identity Batman
|
119558
|
+
RO2S: Authorized Batman
|
119559
|
+
|
119560
|
+
|
119561
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119562
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119563
|
+
RO2S: Client UberClient requested code with scope read write
|
119564
|
+
|
119565
|
+
|
119566
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119567
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000151"}
|
119568
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000151]
|
119569
|
+
|
119570
|
+
|
119571
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119572
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000151"}
|
119573
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119574
|
+
RO2S: Client 4da360ac3321e8d6c7000150 granted access code fde7f584f582a7c940047154f653881b348c2b3866c33598ee4c86942596c184
|
119575
|
+
RO2S: Access token 58a3dec33c4d3402e9b111d1a930dc52190f9245ec7692e4bb87a9ab60e5ca7b granted to client UberClient, identity Batman
|
119576
|
+
RO2S: Authorized Batman
|
119577
|
+
|
119578
|
+
|
119579
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119580
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119581
|
+
RO2S: Client UberClient requested code with scope read write
|
119582
|
+
|
119583
|
+
|
119584
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119585
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000153"}
|
119586
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000153]
|
119587
|
+
|
119588
|
+
|
119589
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119590
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000153"}
|
119591
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119592
|
+
RO2S: Client 4da360ac3321e8d6c7000152 granted access code 3101f0c13bb0e7f2e1bbacd0a1390c6000c7d1a6594468fb5345b197d706e9d7
|
119593
|
+
RO2S: Access token 9a78a76be79147eb33149dff550e15023d380db92283370461c3e22d2cbd8f1e granted to client UberClient, identity Batman
|
119594
|
+
RO2S: Authorized Batman
|
119595
|
+
|
119596
|
+
|
119597
|
+
Processing ApiController#user (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119598
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/user]
|
119599
|
+
RO2S: Client UberClient requested code with scope read write
|
119600
|
+
|
119601
|
+
|
119602
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119603
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000155"}
|
119604
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000155]
|
119605
|
+
|
119606
|
+
|
119607
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119608
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000155"}
|
119609
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119610
|
+
RO2S: Client 4da360ac3321e8d6c7000154 granted access code 8af33b72d90c14a9f71b45bbe8de6648c03ddaad983e87e6eb1312e8a24bb9d5
|
119611
|
+
RO2S: Access token 915c67e6e4e31b97d4e4056869173eae7a8a1c6e2602eddb688422c28dc0fca5 granted to client UberClient, identity Batman
|
119612
|
+
|
119613
|
+
|
119614
|
+
Processing ApiController#user (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119615
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/user]
|
119616
|
+
RO2S: Client UberClient requested code with scope read write
|
119617
|
+
|
119618
|
+
|
119619
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:28) [GET]
|
119620
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000157"}
|
119621
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ac3321e8d6c7000157]
|
119622
|
+
|
119623
|
+
|
119624
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:28) [POST]
|
119625
|
+
Parameters: {"authorization"=>"4da360ac3321e8d6c7000157"}
|
119626
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119627
|
+
RO2S: Client 4da360ac3321e8d6c7000156 granted access code 2d842456f03e083e4a29361138dbed73c36484bf96686be58715e85484098b08
|
119628
|
+
RO2S: Access token 98c823d99dee485a328b52946c9506de668952b91450009559752bc8189b14b4 granted to client UberClient, identity Batman
|
119629
|
+
|
119630
|
+
|
119631
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119632
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119633
|
+
RO2S: Client UberClient requested code with scope read write
|
119634
|
+
|
119635
|
+
|
119636
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119637
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000159"}
|
119638
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ad3321e8d6c7000159]
|
119639
|
+
|
119640
|
+
|
119641
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:29) [POST]
|
119642
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000159"}
|
119643
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119644
|
+
RO2S: Client 4da360ad3321e8d6c7000158 granted access code 297b11f4d7fe99f2a9efac642f7b96aee2b9ddd2084e97e4586de3a72481e79c
|
119645
|
+
RO2S: Access token 7daa1a72cd3e8315ede087ab270358d9a2c507176b23402f51d17a8f25f4fead granted to client UberClient, identity Batman
|
119646
|
+
|
119647
|
+
|
119648
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119649
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119650
|
+
RO2S: Client UberClient requested code with scope read write
|
119651
|
+
|
119652
|
+
|
119653
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119654
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c700015b"}
|
119655
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ad3321e8d6c700015b]
|
119656
|
+
|
119657
|
+
|
119658
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:29) [POST]
|
119659
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c700015b"}
|
119660
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119661
|
+
RO2S: Client 4da360ad3321e8d6c700015a granted access code 6f7091e396da4de0e586ffdb26b4de8d99721c7d87f2385ed9b2012b98dc9dd9
|
119662
|
+
RO2S: Access token 419e0cccfeaf300b862c99ada4c5fa5d4b1f54b6a00393badef09ea992eb9fe6 granted to client UberClient, identity Batman
|
119663
|
+
|
119664
|
+
|
119665
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119666
|
+
Completed in 0ms (View: 0 | 200 OK [http://wrong.org/public]
|
119667
|
+
RO2S: Client UberClient requested code with scope read write
|
119668
|
+
|
119669
|
+
|
119670
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119671
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c700015d"}
|
119672
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ad3321e8d6c700015d]
|
119673
|
+
|
119674
|
+
|
119675
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:29) [POST]
|
119676
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c700015d"}
|
119677
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119678
|
+
RO2S: Client 4da360ad3321e8d6c700015c granted access code 9b1e4a3ee087855ed3985bb29c8e0187fd6b538c668943ada8c2cb9823d14178
|
119679
|
+
RO2S: Access token 9fedf6f99ffa32856a5a8d8210a0ab4807bd8221e1fa9600b2be6af77d928787 granted to client UberClient, identity Batman
|
119680
|
+
|
119681
|
+
|
119682
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119683
|
+
Completed in 0ms (View: 0 | 200 OK [http://wrong.org/public]
|
119684
|
+
RO2S: Client UberClient requested code with scope read write
|
119685
|
+
|
119686
|
+
|
119687
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119688
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c700015f"}
|
119689
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ad3321e8d6c700015f]
|
119690
|
+
|
119691
|
+
|
119692
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:29) [POST]
|
119693
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c700015f"}
|
119694
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119695
|
+
RO2S: Client 4da360ad3321e8d6c700015e granted access code 6d3c2a35c1f4012429ad8df7491f9ab86c2fa4669dda69f51d5adbf22ec43bd2
|
119696
|
+
RO2S: Access token 33893101491db6348be666a87af759ab03bc00d34869828d39f38c55492ed2b0 granted to client UberClient, identity Batman
|
119697
|
+
RO2S: Authorized Batman
|
119698
|
+
|
119699
|
+
|
119700
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119701
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
119702
|
+
RO2S: Client UberClient requested code with scope read write
|
119703
|
+
|
119704
|
+
|
119705
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119706
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000161"}
|
119707
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ad3321e8d6c7000161]
|
119708
|
+
|
119709
|
+
|
119710
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:29) [POST]
|
119711
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000161"}
|
119712
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119713
|
+
RO2S: Client 4da360ad3321e8d6c7000160 granted access code 9cbae1ce2e6e3d56c74c2a97c165698c55220a66ff3c0d50aad5ccfcfb69da42
|
119714
|
+
RO2S: Access token e3706aac940142d2d1a088513f4070b60d9e2f68f2521d97294bbc7c711b1fc5 granted to client UberClient, identity Batman
|
119715
|
+
RO2S: Authorized Batman
|
119716
|
+
|
119717
|
+
|
119718
|
+
Processing ApiController#private (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119719
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
119720
|
+
RO2S: Client UberClient requested code with scope read write
|
119721
|
+
|
119722
|
+
|
119723
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119724
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000163"}
|
119725
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ad3321e8d6c7000163]
|
119726
|
+
|
119727
|
+
|
119728
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:29) [POST]
|
119729
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000163"}
|
119730
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119731
|
+
RO2S: Client 4da360ad3321e8d6c7000162 granted access code e49ed686740180dfbeddb98f68bfb8e61b2124083f3d305db4257fe81a7dac65
|
119732
|
+
RO2S: Access token 1e97a0b783c73debc920c20604342fadadc5d1ef4644e9d4f36f8fad52ee3904 granted to client UberClient, identity Batman
|
119733
|
+
|
119734
|
+
|
119735
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119736
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119737
|
+
RO2S: Client UberClient requested code with scope read write
|
119738
|
+
|
119739
|
+
|
119740
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119741
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000165"}
|
119742
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ad3321e8d6c7000165]
|
119743
|
+
|
119744
|
+
|
119745
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:29) [POST]
|
119746
|
+
Parameters: {"authorization"=>"4da360ad3321e8d6c7000165"}
|
119747
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119748
|
+
RO2S: Client 4da360ad3321e8d6c7000164 granted access code 17c3249b6ad0b9c4f2ef3bcfd1fd9d8759ed437ee62ef1935f8a42fec4fcbdc6
|
119749
|
+
RO2S: Access token eb5449bdf1bf15767bf4a9eda50287ab862c9d1f19ab6b88676c9bb14a735917 granted to client UberClient, identity Batman
|
119750
|
+
|
119751
|
+
|
119752
|
+
Processing ApiController#public (for 127.0.0.1 at 2011-04-11 13:12:29) [GET]
|
119753
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
119754
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
119755
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
119756
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
119757
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
119758
|
+
RO2S: Client UberClient requested token with scope read write
|
119759
|
+
|
119760
|
+
|
119761
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119762
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000193"}
|
119763
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c7000193]
|
119764
|
+
|
119765
|
+
|
119766
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119767
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000193"}
|
119768
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119769
|
+
RO2S: Client 4da360ae3321e8d6c7000192 denied authorization
|
119770
|
+
RO2S: Client UberClient requested token with scope read write
|
119771
|
+
|
119772
|
+
|
119773
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119774
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000195"}
|
119775
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c7000195]
|
119776
|
+
|
119777
|
+
|
119778
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119779
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000195"}
|
119780
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119781
|
+
RO2S: Client 4da360ae3321e8d6c7000194 denied authorization
|
119782
|
+
RO2S: Client UberClient requested token with scope read write
|
119783
|
+
|
119784
|
+
|
119785
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119786
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000197"}
|
119787
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c7000197]
|
119788
|
+
|
119789
|
+
|
119790
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119791
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000197"}
|
119792
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119793
|
+
RO2S: Client 4da360ae3321e8d6c7000196 denied authorization
|
119794
|
+
RO2S: Client UberClient requested token with scope read write
|
119795
|
+
|
119796
|
+
|
119797
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119798
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000199"}
|
119799
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c7000199]
|
119800
|
+
|
119801
|
+
|
119802
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119803
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c7000199"}
|
119804
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119805
|
+
RO2S: Client 4da360ae3321e8d6c7000198 denied authorization
|
119806
|
+
RO2S: Client UberClient requested token with scope read write
|
119807
|
+
|
119808
|
+
|
119809
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119810
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c700019b"}
|
119811
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c700019b]
|
119812
|
+
|
119813
|
+
|
119814
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119815
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c700019b"}
|
119816
|
+
Completed in 1ms (View: 1 | 403 Forbidden [http://example.org/oauth/deny]
|
119817
|
+
RO2S: Client 4da360ae3321e8d6c700019a denied authorization
|
119818
|
+
RO2S: Client UberClient requested token with scope read write
|
119819
|
+
|
119820
|
+
|
119821
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119822
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c700019d"}
|
119823
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c700019d]
|
119824
|
+
|
119825
|
+
|
119826
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119827
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c700019d"}
|
119828
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
119829
|
+
RO2S: Client 4da360ae3321e8d6c700019c granted access token 6cb8aa9c45d67ecda43e9202934a0469ddd2ce1efc0a9a863fd267187757bef3
|
119830
|
+
RO2S: Client UberClient requested token with scope read write
|
119831
|
+
|
119832
|
+
|
119833
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119834
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c700019f"}
|
119835
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c700019f]
|
119836
|
+
|
119837
|
+
|
119838
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119839
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c700019f"}
|
119840
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119841
|
+
RO2S: Client 4da360ae3321e8d6c700019e granted access token 644d9dbe408611a2108bbd402c0bed17b8c60084452f9cad87f1493dadf41ee0
|
119842
|
+
RO2S: Client UberClient requested token with scope read write
|
119843
|
+
|
119844
|
+
|
119845
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119846
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a1"}
|
119847
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001a1]
|
119848
|
+
|
119849
|
+
|
119850
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119851
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a1"}
|
119852
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119853
|
+
RO2S: Client 4da360ae3321e8d6c70001a0 granted access token 0c3a2b24059e28fbc354fa5db8fbdc31a8fdfd4b196ae31b6c04bad49541633d
|
119854
|
+
RO2S: Client UberClient requested token with scope read write
|
119855
|
+
|
119856
|
+
|
119857
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119858
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a3"}
|
119859
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001a3]
|
119860
|
+
|
119861
|
+
|
119862
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119863
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a3"}
|
119864
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119865
|
+
RO2S: Client 4da360ae3321e8d6c70001a2 granted access token fd2ec8d7e126c993c32e2db1d1d6e2bef48b89b03399a47a5cb208fd4978c4c6
|
119866
|
+
RO2S: Client UberClient requested token with scope read write
|
119867
|
+
|
119868
|
+
|
119869
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119870
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a5"}
|
119871
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001a5]
|
119872
|
+
|
119873
|
+
|
119874
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119875
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a5"}
|
119876
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119877
|
+
RO2S: Client 4da360ae3321e8d6c70001a4 granted access token 55057c3f9bac1a16e567e52bf3011503c28630c388b2515b79062551f2a0fa4e
|
119878
|
+
RO2S: Client UberClient requested token with scope read write
|
119879
|
+
|
119880
|
+
|
119881
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119882
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a7"}
|
119883
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001a7]
|
119884
|
+
RO2S: Client UberClient requested token with scope read write
|
119885
|
+
|
119886
|
+
|
119887
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119888
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001a9"}
|
119889
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001a9]
|
119890
|
+
RO2S: Client UberClient requested code with scope read write
|
119891
|
+
|
119892
|
+
|
119893
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119894
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001ab"}
|
119895
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001ab]
|
119896
|
+
|
119897
|
+
|
119898
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119899
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001ab"}
|
119900
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119901
|
+
RO2S: Client 4da360ae3321e8d6c70001aa denied authorization
|
119902
|
+
RO2S: Client UberClient requested code with scope read write
|
119903
|
+
|
119904
|
+
|
119905
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119906
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001ad"}
|
119907
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001ad]
|
119908
|
+
|
119909
|
+
|
119910
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119911
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001ad"}
|
119912
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119913
|
+
RO2S: Client 4da360ae3321e8d6c70001ac denied authorization
|
119914
|
+
RO2S: Client UberClient requested code with scope read write
|
119915
|
+
|
119916
|
+
|
119917
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119918
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001af"}
|
119919
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001af]
|
119920
|
+
|
119921
|
+
|
119922
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119923
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001af"}
|
119924
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119925
|
+
RO2S: Client 4da360ae3321e8d6c70001ae denied authorization
|
119926
|
+
RO2S: Client UberClient requested code with scope read write
|
119927
|
+
|
119928
|
+
|
119929
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119930
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b1"}
|
119931
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001b1]
|
119932
|
+
|
119933
|
+
|
119934
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119935
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b1"}
|
119936
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119937
|
+
RO2S: Client 4da360ae3321e8d6c70001b0 denied authorization
|
119938
|
+
RO2S: Client UberClient requested code with scope read write
|
119939
|
+
|
119940
|
+
|
119941
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119942
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b3"}
|
119943
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001b3]
|
119944
|
+
|
119945
|
+
|
119946
|
+
Processing OauthController#deny (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119947
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b3"}
|
119948
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
119949
|
+
RO2S: Client 4da360ae3321e8d6c70001b2 denied authorization
|
119950
|
+
RO2S: Client UberClient requested code with scope read write
|
119951
|
+
|
119952
|
+
|
119953
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119954
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b5"}
|
119955
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001b5]
|
119956
|
+
|
119957
|
+
|
119958
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119959
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b5"}
|
119960
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119961
|
+
RO2S: Client 4da360ae3321e8d6c70001b4 granted access code 7b521d924232d60da549b22e16084838157ad76703e3c606e4443f24f6404135
|
119962
|
+
RO2S: Client UberClient requested code with scope read write
|
119963
|
+
|
119964
|
+
|
119965
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119966
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b7"}
|
119967
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001b7]
|
119968
|
+
|
119969
|
+
|
119970
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119971
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b7"}
|
119972
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119973
|
+
RO2S: Client 4da360ae3321e8d6c70001b6 granted access code 74e61b0238a12a0466ca5227e15c81a40479d33023b7f62d5a7a329a595afb1d
|
119974
|
+
RO2S: Client UberClient requested code with scope read write
|
119975
|
+
|
119976
|
+
|
119977
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119978
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b9"}
|
119979
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001b9]
|
119980
|
+
|
119981
|
+
|
119982
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119983
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001b9"}
|
119984
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119985
|
+
RO2S: Client 4da360ae3321e8d6c70001b8 granted access code 58478c4b998cf5741f4f600e5029fe8c4367c8ac00763b37cdbab3d324958054
|
119986
|
+
RO2S: Client UberClient requested code with scope read write
|
119987
|
+
|
119988
|
+
|
119989
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
119990
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001bb"}
|
119991
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001bb]
|
119992
|
+
|
119993
|
+
|
119994
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
119995
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001bb"}
|
119996
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
119997
|
+
RO2S: Client 4da360ae3321e8d6c70001ba granted access code 022c165f221bcf6709757fb1a9bb22cf8bc5267059b82c9e35f8d13efdffa7ac
|
119998
|
+
RO2S: Client UberClient requested code with scope read write
|
119999
|
+
|
120000
|
+
|
120001
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
120002
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001bd"}
|
120003
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001bd]
|
120004
|
+
|
120005
|
+
|
120006
|
+
Processing OauthController#grant (for 127.0.0.1 at 2011-04-11 13:12:30) [POST]
|
120007
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001bd"}
|
120008
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
120009
|
+
RO2S: Client 4da360ae3321e8d6c70001bc granted access code 764afd18cd75217eac5a8b80726f4583316aaa5d7d8b6c1b05df19308cddfdfd
|
120010
|
+
RO2S: Client UberClient requested code with scope read write
|
120011
|
+
|
120012
|
+
|
120013
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
120014
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001bf"}
|
120015
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001bf]
|
120016
|
+
RO2S: Client UberClient requested code with scope read write
|
120017
|
+
|
120018
|
+
|
120019
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:30) [GET]
|
120020
|
+
Parameters: {"authorization"=>"4da360ae3321e8d6c70001c1"}
|
120021
|
+
Completed in 5ms (View: 3 | 200 OK [http://example.org/oauth/authorize?authorization=4da360ae3321e8d6c70001c1]
|
120022
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120023
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120024
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120025
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120026
|
+
RO2S: Authorization request with invalid redirect_uri: http:not-valid Redirect URL must be absolute URL
|
120027
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
120028
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
120029
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
120030
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
120031
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120032
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120033
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120034
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120035
|
+
RO2S: Authorization request with invalid redirect_uri: Redirect URL must be absolute URL
|
120036
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120037
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120038
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120039
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120040
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120041
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120042
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120043
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
120044
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120045
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120046
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120047
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
120048
|
+
RO2S: Client UberClient requested code with scope read write
|
120049
|
+
|
120050
|
+
|
120051
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120052
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001dd"}
|
120053
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001dd]
|
120054
|
+
RO2S: Client UberClient requested code with scope read write
|
120055
|
+
|
120056
|
+
|
120057
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120058
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001df"}
|
120059
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001df]
|
120060
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
120061
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
120062
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
120063
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
120064
|
+
RO2S: Client UberClient requested code with scope read write
|
120065
|
+
|
120066
|
+
|
120067
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120068
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001e5"}
|
120069
|
+
Completed in 9ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001e5]
|
120070
|
+
RO2S: Client UberClient requested code with scope read write
|
120071
|
+
|
120072
|
+
|
120073
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120074
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001e5"}
|
120075
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001e5]
|
120076
|
+
RO2S: Client UberClient requested code with scope read write
|
120077
|
+
|
120078
|
+
|
120079
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120080
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001e7"}
|
120081
|
+
Completed in 5ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001e7]
|
120082
|
+
RO2S: Client UberClient requested code with scope read write
|
120083
|
+
|
120084
|
+
|
120085
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120086
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001e7"}
|
120087
|
+
Completed in 4ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001e7]
|
120088
|
+
RO2S: Client UberClient requested code with scope read write
|
120089
|
+
|
120090
|
+
|
120091
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120092
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001e9"}
|
120093
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001e9]
|
120094
|
+
RO2S: Invalid authorization request
|
120095
|
+
RO2S: Client UberClient requested code with scope read write
|
120096
|
+
|
120097
|
+
|
120098
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2011-04-11 13:12:31) [GET]
|
120099
|
+
Parameters: {"authorization"=>"4da360af3321e8d6c70001eb"}
|
120100
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4da360af3321e8d6c70001eb]
|
120101
|
+
RO2S: Invalid authorization request #<Rack::OAuth2::Server::AuthRequest:0x0000010151c898>
|
120102
|
+
RO2S: Access token c8a604cae08f64f92acb1fe8e97b31c4405e4826d2d9e19cc6b9aeabb1593ce5 granted to client UberClient, identity Batman
|
120103
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
120104
|
+
RO2S: Access token 309375734057cb15a3d1762e0aae6b667d69b0ffa6fa46b8042c11992f00a4b3 granted to client UberClient, identity Batman
|
120105
|
+
RO2S: Access token 35867b5c133dd1b05e87203b8f58b1e982b97096804bd9e18826d1d33b20aea2 granted to client UberClient, identity Batman
|
120106
|
+
RO2S: Access token be39d9b73503492b663d110f68d0598a9150f3c5572ee136ade3df4276ca27ad granted to client UberClient, identity Batman
|
120107
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
120108
|
+
RO2S: Access token eaebfdd68114536cc9928b0bf2cbd113229c0d5b6d41ef7d409cd0b073fdc585 granted to client UberClient, identity Batman
|
120109
|
+
RO2S: Access token d9151b5668b74a4e21f94bfddecd3dc4c972bf568405778fec9d547cdbbcabd6 granted to client UberClient, identity Batman
|
120110
|
+
RO2S: Access token c6cd8010deb6cc02bba25ec05abfadfdafda98bdcd9e9ed0c5e4ad7c5f2520d2 granted to client UberClient, identity Batman
|
120111
|
+
RO2S: Access token e68d7e66443ecc4d356049385e0196b25479d570b65c71e1aa2277f375d20c21 granted to client UberClient, identity Batman
|
120112
|
+
RO2S: Access token 8318b6374baa48201d3f25511c23337d3c618cac038dc80b78767820a01b0ec5 granted to client UberClient, identity Batman
|
120113
|
+
RO2S: Access token 036f56ba4c576483e01bcb35e1bdb88bc462489893b7a4d3a2482de3f410c593 granted to client UberClient, identity Batman
|
120114
|
+
RO2S: Access token 99de92b641dd7dbcb81f07b26336a59c6f2579b76b2a431ace4a8d403a2a5919 granted to client UberClient, identity Batman
|