rack-oauth2-server 2.0.0 → 2.0.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 +6 -0
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/lib/rack/oauth2/admin/js/application.js +33 -21
- data/lib/rack/oauth2/server.rb +1 -1
- data/test/oauth/access_grant_test.rb +10 -4
- data/test/rails2/log/test.log +2810 -0
- data/test/rails3/log/test.log +4950 -0
- metadata +5 -5
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
@@ -417,7 +417,7 @@ You can set the following options:
|
|
417
417
|
- +scope+ -- Common scope shown and added by default to new clients (array of
|
418
418
|
names, e.g. ["read", "write"]).
|
419
419
|
|
420
|
-
|
420
|
+
=== Web Admin API
|
421
421
|
|
422
422
|
The OAuth Web admin is a single-page client application that operates by
|
423
423
|
accessing the OAuth API. The API is mounted at /oauth/admin/api (basically /api
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.1
|
@@ -6,7 +6,7 @@
|
|
6
6
|
this.use(Sammy.Title);
|
7
7
|
this.setTitle("OAuth Admin - ");
|
8
8
|
this.use(Sammy.OAuth2);
|
9
|
-
this.authorize =
|
9
|
+
this.authorize = "" + document.location.pathname + "/authorize";
|
10
10
|
$(document).ajaxError(function(evt, xhr) {
|
11
11
|
if (xhr.status === 401) {
|
12
12
|
app.loseAccessToken();
|
@@ -33,23 +33,31 @@
|
|
33
33
|
$("#header .signin").show();
|
34
34
|
return $("#header .signout").hide();
|
35
35
|
});
|
36
|
-
api =
|
36
|
+
api = "" + document.location.pathname + "/api";
|
37
37
|
mergeScope = function(scope) {
|
38
38
|
if ($.isArray(scope)) {
|
39
39
|
scope = scope.join(" ");
|
40
40
|
}
|
41
41
|
scope = (scope || "").trim().split(/\s+/);
|
42
|
-
|
42
|
+
if (scope.length === 1 && scope[0] === "") {
|
43
|
+
return [];
|
44
|
+
} else {
|
45
|
+
return _.uniq(scope).sort();
|
46
|
+
}
|
43
47
|
};
|
44
48
|
commonScope = null;
|
45
49
|
withCommonScope = function(cb) {
|
46
|
-
|
47
|
-
return cb(commonScope
|
48
|
-
}
|
50
|
+
if (commonScope) {
|
51
|
+
return cb(commonScope);
|
52
|
+
} else {
|
53
|
+
return $.getJSON("" + api + "/clients", function(json) {
|
54
|
+
return cb(commonScope = json.scope);
|
55
|
+
});
|
56
|
+
}
|
49
57
|
};
|
50
58
|
this.get("#/", function(context) {
|
51
59
|
context.title("All Clients");
|
52
|
-
return $.getJSON("" +
|
60
|
+
return $.getJSON("" + api + "/clients", function(clients) {
|
53
61
|
commonScope = clients.scope;
|
54
62
|
return context.partial("admin/views/clients.tmpl", {
|
55
63
|
clients: clients.list,
|
@@ -60,7 +68,7 @@
|
|
60
68
|
});
|
61
69
|
});
|
62
70
|
this.get("#/client/:id", function(context) {
|
63
|
-
return $.getJSON("" +
|
71
|
+
return $.getJSON("" + api + "/client/" + context.params.id, function(client) {
|
64
72
|
context.title(client.displayName);
|
65
73
|
client.notes = (client.notes || "").split(/\n\n/);
|
66
74
|
return context.partial("admin/views/client.tmpl", client).load(client.history).then(function(json) {
|
@@ -69,7 +77,7 @@
|
|
69
77
|
});
|
70
78
|
});
|
71
79
|
this.get("#/client/:id/page/:page", function(context) {
|
72
|
-
return $.getJSON("" +
|
80
|
+
return $.getJSON("" + api + "/client/" + context.params.id + "?page=" + context.params.page, function(client) {
|
73
81
|
context.title(client.displayName);
|
74
82
|
client.notes = client.notes.split(/\n\n/);
|
75
83
|
return context.partial("admin/views/client.tmpl", client).load(client.history).then(function(json) {
|
@@ -78,12 +86,12 @@
|
|
78
86
|
});
|
79
87
|
});
|
80
88
|
this.post("#/token/:id/revoke", function(context) {
|
81
|
-
return $.post("" +
|
89
|
+
return $.post("" + api + "/token/" + context.params.id + "/revoke", function() {
|
82
90
|
return context.redirect("#/");
|
83
91
|
});
|
84
92
|
});
|
85
93
|
this.get("#/client/:id/edit", function(context) {
|
86
|
-
return $.getJSON("" +
|
94
|
+
return $.getJSON("" + api + "/client/" + context.params.id, function(client) {
|
87
95
|
context.title(client.displayName);
|
88
96
|
return withCommonScope(function(scope) {
|
89
97
|
client.common = scope;
|
@@ -95,7 +103,7 @@
|
|
95
103
|
context.params.scope = mergeScope(context.params.scope);
|
96
104
|
return $.ajax({
|
97
105
|
type: "put",
|
98
|
-
url:
|
106
|
+
url: "" + api + "/client/" + context.params.id,
|
99
107
|
data: {
|
100
108
|
displayName: context.params.displayName,
|
101
109
|
link: context.params.link,
|
@@ -105,7 +113,7 @@
|
|
105
113
|
scope: context.params.scope
|
106
114
|
},
|
107
115
|
success: function(client) {
|
108
|
-
context.redirect("#/client/" +
|
116
|
+
context.redirect("#/client/" + context.params.id);
|
109
117
|
return app.trigger("notice", "Saved your changes");
|
110
118
|
},
|
111
119
|
error: function(xhr) {
|
@@ -119,7 +127,7 @@
|
|
119
127
|
this.del("#/client/:id", function(context) {
|
120
128
|
return $.ajax({
|
121
129
|
type: "post",
|
122
|
-
url:
|
130
|
+
url: "" + api + "/client/" + context.params.id,
|
123
131
|
data: {
|
124
132
|
_method: "delete"
|
125
133
|
},
|
@@ -129,7 +137,7 @@
|
|
129
137
|
});
|
130
138
|
});
|
131
139
|
this.post("#/client/:id/revoke", function(context) {
|
132
|
-
return $.post("" +
|
140
|
+
return $.post("" + api + "/client/" + context.params.id + "/revoke", function() {
|
133
141
|
return context.redirect("#/");
|
134
142
|
});
|
135
143
|
});
|
@@ -147,7 +155,7 @@
|
|
147
155
|
context.params.scope = mergeScope(context.params.scope);
|
148
156
|
return $.ajax({
|
149
157
|
type: "post",
|
150
|
-
url:
|
158
|
+
url: "" + api + "/clients",
|
151
159
|
data: {
|
152
160
|
displayName: context.params.displayName,
|
153
161
|
link: context.params.link,
|
@@ -157,7 +165,7 @@
|
|
157
165
|
scope: context.params.scope
|
158
166
|
},
|
159
167
|
success: function(client) {
|
160
|
-
app.trigger("notice", "Added new client application " +
|
168
|
+
app.trigger("notice", "Added new client application " + client.displayName);
|
161
169
|
return context.redirect("#/");
|
162
170
|
},
|
163
171
|
error: function(xhr) {
|
@@ -186,7 +194,7 @@
|
|
186
194
|
action: link.attr("href")
|
187
195
|
});
|
188
196
|
if (method !== "get" && method !== "post") {
|
189
|
-
form.append($("<input name='_method' type='hidden' value='" +
|
197
|
+
form.append($("<input name='_method' type='hidden' value='" + method + "'>"));
|
190
198
|
}
|
191
199
|
app.$element().append(form);
|
192
200
|
form.submit();
|
@@ -202,10 +210,10 @@
|
|
202
210
|
clearTimeout(noticeTimeout);
|
203
211
|
noticeTimeout = null;
|
204
212
|
}
|
205
|
-
return
|
213
|
+
return noticeTimeout = setTimeout(function() {
|
206
214
|
noticeTimeout = null;
|
207
215
|
return $("#notice").fadeOut("slow");
|
208
|
-
}, 5000)
|
216
|
+
}, 5000);
|
209
217
|
});
|
210
218
|
return $("#notice").live("click", function() {
|
211
219
|
return $(this).fadeOut("slow");
|
@@ -239,7 +247,11 @@
|
|
239
247
|
return pv.Format.date("%b %d").format(new Date(d * 86400000));
|
240
248
|
});
|
241
249
|
vis.add(pv.Rule).data(y.ticks(3)).bottom(y).strokeStyle(function(d) {
|
242
|
-
|
250
|
+
if (d) {
|
251
|
+
return "#ddd";
|
252
|
+
} else {
|
253
|
+
return "#000";
|
254
|
+
}
|
243
255
|
}).anchor("left").add(pv.Label).text(y.tickFormat);
|
244
256
|
if (data.length === 1) {
|
245
257
|
vis.add(pv.Dot).data(data).left(function(d) {
|
data/lib/rack/oauth2/server.rb
CHANGED
@@ -354,7 +354,7 @@ module Rack
|
|
354
354
|
# 4.1.2. Resource Owner Password Credentials
|
355
355
|
username, password = request.POST.values_at("username", "password")
|
356
356
|
raise InvalidGrantError, "Missing username/password" unless username && password
|
357
|
-
requested_scope = Utils.normalize_scope(request.POST["scope"])
|
357
|
+
requested_scope = request.POST["scope"] ? Utils.normalize_scope(request.POST["scope"]) : client.scope
|
358
358
|
allowed_scope = client.scope
|
359
359
|
raise InvalidScopeError unless (requested_scope - allowed_scope).empty?
|
360
360
|
args = [username, password]
|
@@ -76,9 +76,10 @@ class AccessGrantTest < Test::Unit::TestCase
|
|
76
76
|
post "/oauth/access_token", params
|
77
77
|
end
|
78
78
|
|
79
|
-
def request_with_username_password(username, password, scope =
|
79
|
+
def request_with_username_password(username, password, scope = nil)
|
80
80
|
basic_authorize client.id, client.secret
|
81
|
-
params = { :grant_type=>"password"
|
81
|
+
params = { :grant_type=>"password" }
|
82
|
+
params[:scope] = scope if scope
|
82
83
|
params[:username] = username if username
|
83
84
|
params[:password] = password if password
|
84
85
|
post "/oauth/access_token", params
|
@@ -211,8 +212,13 @@ class AccessGrantTest < Test::Unit::TestCase
|
|
211
212
|
end
|
212
213
|
|
213
214
|
context "no scope specified" do
|
214
|
-
setup { request_with_username_password "cowbell", "more"
|
215
|
-
should_respond_with_access_token
|
215
|
+
setup { request_with_username_password "cowbell", "more" }
|
216
|
+
should_respond_with_access_token "oauth-admin read write"
|
217
|
+
end
|
218
|
+
|
219
|
+
context "given scope" do
|
220
|
+
setup { request_with_username_password "cowbell", "more", "read" }
|
221
|
+
should_respond_with_access_token "read"
|
216
222
|
end
|
217
223
|
|
218
224
|
context "unsupported scope" do
|
data/test/rails2/log/test.log
CHANGED
@@ -97076,3 +97076,2813 @@ RO2S: Access token 0cf186d1cc75104da39aee41dd8200af05aa74ec693fc38046dc2a49afbdc
|
|
97076
97076
|
RO2S: Access token 0d340dd9aed6d70a753de05a20769c33175d34fbc7bc23d4c175aefa3fa98232 granted to client UberClient, identity Batman
|
97077
97077
|
RO2S: Access token e0597d8338daf08a9391ee0771bd70ebb5997e7b32e1e7d884a6a04fb83d5708 granted to client UberClient, identity Batman
|
97078
97078
|
RO2S: Access token 628bac69d82a5940925b460db0c817f201e212185e52475577636d89df130e39 granted to client UberClient, identity Batman
|
97079
|
+
RO2S: Client UberClient requested code with scope read write
|
97080
|
+
|
97081
|
+
|
97082
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97083
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000002"}
|
97084
|
+
Completed in 4ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000002]
|
97085
|
+
|
97086
|
+
|
97087
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97088
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000002"}
|
97089
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97090
|
+
RO2S: Client 4cf56c573321e87e92000001 granted access code efbb593c6f068ecf4cbaaca005f1800efcba5b5b2d07375b04d27d4011275f6b
|
97091
|
+
RO2S: Client UberClient requested code with scope read write
|
97092
|
+
|
97093
|
+
|
97094
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97095
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000004"}
|
97096
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000004]
|
97097
|
+
|
97098
|
+
|
97099
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97100
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000004"}
|
97101
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97102
|
+
RO2S: Client 4cf56c573321e87e92000003 granted access code 57df6c0aea1ae4eb0faaaffabe13de9bf9ca62096ab566b3540ad01beb5274e4
|
97103
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
97104
|
+
RO2S: Client UberClient requested code with scope read write
|
97105
|
+
|
97106
|
+
|
97107
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97108
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000006"}
|
97109
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000006]
|
97110
|
+
|
97111
|
+
|
97112
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97113
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000006"}
|
97114
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97115
|
+
RO2S: Client 4cf56c573321e87e92000005 granted access code af7f4e773acbbbe2bb0e7bb7c0b7dc7aa71e940dbef3ba1c6cb0c096fc2f0c94
|
97116
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
97117
|
+
RO2S: Client UberClient requested code with scope read write
|
97118
|
+
|
97119
|
+
|
97120
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97121
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000008"}
|
97122
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000008]
|
97123
|
+
|
97124
|
+
|
97125
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97126
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000008"}
|
97127
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97128
|
+
RO2S: Client 4cf56c573321e87e92000007 granted access code 55c5b03e6c2e262b7c02597328761d2bd43848f8a63a28ab4944a99a358aa869
|
97129
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
97130
|
+
RO2S: Client UberClient requested code with scope read write
|
97131
|
+
|
97132
|
+
|
97133
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97134
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200000a"}
|
97135
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200000a]
|
97136
|
+
|
97137
|
+
|
97138
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97139
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200000a"}
|
97140
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97141
|
+
RO2S: Client 4cf56c573321e87e92000009 granted access code 5b2990910a7636a745183aa0790c091646c8f73bbfbdf3c6d26c15394a78f5fc
|
97142
|
+
RO2S: Access token bf5de066ab8f337c849c7ed94b18c7594c9773ada8c78e6eb38c0285c937a66c granted to client UberClient, identity Batman
|
97143
|
+
RO2S: Access token request error invalid_grant: You can't use the same access grant twice
|
97144
|
+
RO2S: Client UberClient requested code with scope read write
|
97145
|
+
|
97146
|
+
|
97147
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97148
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200000c"}
|
97149
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200000c]
|
97150
|
+
|
97151
|
+
|
97152
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97153
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200000c"}
|
97154
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97155
|
+
RO2S: Client 4cf56c573321e87e9200000b granted access code b9479a64268c7b3e16413ad7403f8e85694a19c87120f93299f4d801ffbeaa61
|
97156
|
+
RO2S: Access token cec96c57bacc9b952011cdb751c706f0371cc1314909ed28aae20ef2dd62b941 granted to client UberClient, identity Batman
|
97157
|
+
RO2S: Access token request error invalid_grant: You can't use the same access grant twice
|
97158
|
+
RO2S: Client UberClient requested code with scope read write
|
97159
|
+
|
97160
|
+
|
97161
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97162
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200000e"}
|
97163
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200000e]
|
97164
|
+
|
97165
|
+
|
97166
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97167
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200000e"}
|
97168
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97169
|
+
RO2S: Client 4cf56c573321e87e9200000d granted access code dfe284b8f47570db07157a255611ec696836acb55a452ac823209872151e01fa
|
97170
|
+
RO2S: Access token 7a6293f6a4f13242617bbff972734b3607ff55813abae41f1126f314d7e2383d granted to client UberClient, identity Batman
|
97171
|
+
RO2S: Access token request error invalid_grant: You can't use the same access grant twice
|
97172
|
+
RO2S: Client UberClient requested code with scope read write
|
97173
|
+
|
97174
|
+
|
97175
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97176
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000010"}
|
97177
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000010]
|
97178
|
+
|
97179
|
+
|
97180
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97181
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000010"}
|
97182
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97183
|
+
RO2S: Client 4cf56c573321e87e9200000f granted access code 3ebadcded5b1c8217cb581b750164402c59584ef3c2c9505da098b4406ea1885
|
97184
|
+
RO2S: Access token 6ea812615cf216963be760a6ceb3b6d43f876f5760a4303bf234465376bbc549 granted to client UberClient, identity Batman
|
97185
|
+
RO2S: Client UberClient requested code with scope read write
|
97186
|
+
|
97187
|
+
|
97188
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97189
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000012"}
|
97190
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000012]
|
97191
|
+
|
97192
|
+
|
97193
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97194
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000012"}
|
97195
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97196
|
+
RO2S: Client 4cf56c573321e87e92000011 granted access code dca5f6bc4e5fff9c1812f17c0ee14ef774c20774cecf499e738878b4d7275eeb
|
97197
|
+
RO2S: Access token a15965965cfb07f303bd65f6f58db1865f9a3c7563a929cc8782c1dd8bc20659 granted to client UberClient, identity Batman
|
97198
|
+
RO2S: Client UberClient requested code with scope read write
|
97199
|
+
|
97200
|
+
|
97201
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97202
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000014"}
|
97203
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000014]
|
97204
|
+
|
97205
|
+
|
97206
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97207
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000014"}
|
97208
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97209
|
+
RO2S: Client 4cf56c573321e87e92000013 granted access code 7a833221fd4c24426b4b3417ea8ff71d01b483bd9e77b004a1b0062bb6d60a5a
|
97210
|
+
RO2S: Access token 4b1ecaa1ea7332e59ca19667f6ca1c4b5f8a2dedc37f8e970bf7e2fa659f6375 granted to client UberClient, identity Batman
|
97211
|
+
RO2S: Client UberClient requested code with scope read write
|
97212
|
+
|
97213
|
+
|
97214
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97215
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000016"}
|
97216
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000016]
|
97217
|
+
|
97218
|
+
|
97219
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97220
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000016"}
|
97221
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97222
|
+
RO2S: Client 4cf56c573321e87e92000015 granted access code 1278e6b54883db4113acee1b3bfb4dadeefbcfb9151a3e4e0e647bda349abe1b
|
97223
|
+
RO2S: Access token 8ba3ffaaa9785eeef4452aebec1020691e279076911ff1c3ec6373c2605bdee5 granted to client UberClient, identity Batman
|
97224
|
+
RO2S: Client UberClient requested code with scope read write
|
97225
|
+
|
97226
|
+
|
97227
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97228
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000018"}
|
97229
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000018]
|
97230
|
+
|
97231
|
+
|
97232
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97233
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000018"}
|
97234
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97235
|
+
RO2S: Client 4cf56c573321e87e92000017 granted access code 69bb665f713844eb4d4708d669685e55b674d174a6204155c5700d461a7effca
|
97236
|
+
RO2S: Access token 02dac3d4c39685c749f377750b0dc89ca45fc7e9b08498344fccd28d603c10ef granted to client UberClient, identity Batman
|
97237
|
+
RO2S: Client UberClient requested code with scope read write
|
97238
|
+
|
97239
|
+
|
97240
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97241
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200001a"}
|
97242
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200001a]
|
97243
|
+
|
97244
|
+
|
97245
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97246
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200001a"}
|
97247
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97248
|
+
RO2S: Client 4cf56c573321e87e92000019 granted access code a416471dd64cb9e2c636da2441d90e576dce00b7e3e0ad3c4d66a7e6a3215f06
|
97249
|
+
RO2S: Access token 5871d935b4d7d29965860f06b9e712b7c8bb882a4152c8fac6af3c8e93efa954 granted to client UberClient, identity Batman
|
97250
|
+
RO2S: Client UberClient requested code with scope read write
|
97251
|
+
|
97252
|
+
|
97253
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97254
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200001c"}
|
97255
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200001c]
|
97256
|
+
|
97257
|
+
|
97258
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97259
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200001c"}
|
97260
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97261
|
+
RO2S: Client 4cf56c573321e87e9200001b granted access code 1815b7238c09df850f2d4c16eb7c1330443c51ca6b0604a684d7e6cdcd382a43
|
97262
|
+
RO2S: Access token 87d73b7f32ef585e99a6d22eac8adf9f2f24f38177acf4906a846f8795cdeb81 granted to client UberClient, identity Batman
|
97263
|
+
RO2S: Client UberClient requested code with scope read write
|
97264
|
+
|
97265
|
+
|
97266
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97267
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200001e"}
|
97268
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200001e]
|
97269
|
+
|
97270
|
+
|
97271
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97272
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200001e"}
|
97273
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97274
|
+
RO2S: Client 4cf56c573321e87e9200001d granted access code b2c6ac93dfc98bf645ce0ea91ecd1fa6bcfb1a9c927e79eaf872e65598328f24
|
97275
|
+
RO2S: Access token be99a32685e7addb2bb410b232c59361f46fd420af88a66fcd40242b43215ce4 granted to client UberClient, identity Batman
|
97276
|
+
RO2S: Client UberClient requested code with scope read write
|
97277
|
+
|
97278
|
+
|
97279
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97280
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000020"}
|
97281
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000020]
|
97282
|
+
|
97283
|
+
|
97284
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97285
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000020"}
|
97286
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97287
|
+
RO2S: Client 4cf56c573321e87e9200001f granted access code b89141e8a9598d7a108ef090b7d0b6d608a383f17d63e52f9bc912bc31bf4c92
|
97288
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97289
|
+
RO2S: Client UberClient requested code with scope read write
|
97290
|
+
|
97291
|
+
|
97292
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97293
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000023"}
|
97294
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000023]
|
97295
|
+
|
97296
|
+
|
97297
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97298
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000023"}
|
97299
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97300
|
+
RO2S: Client 4cf56c573321e87e92000022 granted access code 5316af94ab25878e2bf7d4a51d8a5e182253aefd12a4ac229242b6cc32f83b08
|
97301
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97302
|
+
RO2S: Client UberClient requested code with scope read write
|
97303
|
+
|
97304
|
+
|
97305
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97306
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000026"}
|
97307
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000026]
|
97308
|
+
|
97309
|
+
|
97310
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97311
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000026"}
|
97312
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97313
|
+
RO2S: Client 4cf56c573321e87e92000025 granted access code 1ca8b71b88244760a0597dab5bfc3d6dd485191228ebf2fb595f8f9213f6f041
|
97314
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97315
|
+
RO2S: Client UberClient requested code with scope read write
|
97316
|
+
|
97317
|
+
|
97318
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97319
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000029"}
|
97320
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000029]
|
97321
|
+
|
97322
|
+
|
97323
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97324
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000029"}
|
97325
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97326
|
+
RO2S: Client 4cf56c573321e87e92000028 granted access code ce98ece8bd91e4f24eb63015b20373654bff65c608712b472d42bb67ec4df4f7
|
97327
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97328
|
+
RO2S: Client UberClient requested code with scope read write
|
97329
|
+
|
97330
|
+
|
97331
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97332
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200002b"}
|
97333
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200002b]
|
97334
|
+
|
97335
|
+
|
97336
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97337
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200002b"}
|
97338
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97339
|
+
RO2S: Client 4cf56c573321e87e9200002a granted access code 5e540aefa280ec991487ce3fe31b5f25cb651b298dca76713ae2d1e7bdd54242
|
97340
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97341
|
+
RO2S: Client UberClient requested code with scope read write
|
97342
|
+
|
97343
|
+
|
97344
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97345
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200002d"}
|
97346
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200002d]
|
97347
|
+
|
97348
|
+
|
97349
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97350
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200002d"}
|
97351
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97352
|
+
RO2S: Client 4cf56c573321e87e9200002c granted access code f4c44b87180346e318a8398f9d6bf7c09e55b13a64ee794677fd2802ce08c407
|
97353
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97354
|
+
RO2S: Client UberClient requested code with scope read write
|
97355
|
+
|
97356
|
+
|
97357
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97358
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200002f"}
|
97359
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200002f]
|
97360
|
+
|
97361
|
+
|
97362
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97363
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200002f"}
|
97364
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97365
|
+
RO2S: Client 4cf56c573321e87e9200002e granted access code 656ab2fda1b7ecd9af0a40627746d4eb91fdc6e83b1040fab302725279d3e5bb
|
97366
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97367
|
+
RO2S: Client UberClient requested code with scope read write
|
97368
|
+
|
97369
|
+
|
97370
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97371
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000031"}
|
97372
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000031]
|
97373
|
+
|
97374
|
+
|
97375
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97376
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000031"}
|
97377
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97378
|
+
RO2S: Client 4cf56c573321e87e92000030 granted access code 787510da89c1f0bfd2506f2463ad906d485caba9321d16e4bea5366451d75c1c
|
97379
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97380
|
+
RO2S: Client UberClient requested code with scope read write
|
97381
|
+
|
97382
|
+
|
97383
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97384
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000033"}
|
97385
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000033]
|
97386
|
+
|
97387
|
+
|
97388
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97389
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000033"}
|
97390
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97391
|
+
RO2S: Client 4cf56c573321e87e92000032 granted access code 77504bcf129371284158f7d84e033f040af1c2a476fa737e4dc8b45b53114ba4
|
97392
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97393
|
+
RO2S: Client UberClient requested code with scope read write
|
97394
|
+
|
97395
|
+
|
97396
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97397
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000035"}
|
97398
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000035]
|
97399
|
+
|
97400
|
+
|
97401
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97402
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000035"}
|
97403
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97404
|
+
RO2S: Client 4cf56c573321e87e92000034 granted access code 00287baeb7f8d357387f8d121c9eb98cfd3ecf696aaca3154d2efb8df0e7d01c
|
97405
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97406
|
+
RO2S: Client UberClient requested code with scope read write
|
97407
|
+
|
97408
|
+
|
97409
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97410
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000037"}
|
97411
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000037]
|
97412
|
+
|
97413
|
+
|
97414
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97415
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000037"}
|
97416
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97417
|
+
RO2S: Client 4cf56c573321e87e92000036 granted access code c526af2fe83511a349867ee58fae0147144b401e317747182e7635c211f19c4c
|
97418
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97419
|
+
RO2S: Client UberClient requested code with scope read write
|
97420
|
+
|
97421
|
+
|
97422
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97423
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000039"}
|
97424
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e92000039]
|
97425
|
+
|
97426
|
+
|
97427
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97428
|
+
Parameters: {"authorization"=>"4cf56c573321e87e92000039"}
|
97429
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97430
|
+
RO2S: Client 4cf56c573321e87e92000038 granted access code 29e9b58d24aed26381350b52e294ebc372e3716539a1ad5c6c8755e48e407a2c
|
97431
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97432
|
+
RO2S: Client UberClient requested code with scope read write
|
97433
|
+
|
97434
|
+
|
97435
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97436
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200003b"}
|
97437
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200003b]
|
97438
|
+
|
97439
|
+
|
97440
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97441
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200003b"}
|
97442
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97443
|
+
RO2S: Client 4cf56c573321e87e9200003a granted access code 6282740b198e14d71e427afd7fe12a22790ef20767676115c99c2b0a97cb005b
|
97444
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97445
|
+
RO2S: Client UberClient requested code with scope read write
|
97446
|
+
|
97447
|
+
|
97448
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97449
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200003d"}
|
97450
|
+
Completed in 6ms (View: 3 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200003d]
|
97451
|
+
|
97452
|
+
|
97453
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:51) [POST]
|
97454
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200003d"}
|
97455
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97456
|
+
RO2S: Client 4cf56c573321e87e9200003c granted access code 97ae1933a4c51bb862e7f1a40155e5e6b88a0ebbe25e675e834524174c07df9e
|
97457
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97458
|
+
RO2S: Client UberClient requested code with scope read write
|
97459
|
+
|
97460
|
+
|
97461
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:51) [GET]
|
97462
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200003f"}
|
97463
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c573321e87e9200003f]
|
97464
|
+
|
97465
|
+
|
97466
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97467
|
+
Parameters: {"authorization"=>"4cf56c573321e87e9200003f"}
|
97468
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97469
|
+
RO2S: Client 4cf56c573321e87e9200003e granted access code e16df63d509702ff223b2f2a67e67b32d09a7287da05e63baf6f063903a008e1
|
97470
|
+
RO2S: Access token 055b0efbee5ddff1e477154a3e09aff395c83e6741a591c1e73374aecf8e58ca granted to client UberClient, identity Batman
|
97471
|
+
RO2S: Client UberClient requested code with scope read write
|
97472
|
+
|
97473
|
+
|
97474
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97475
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000041"}
|
97476
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000041]
|
97477
|
+
|
97478
|
+
|
97479
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97480
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000041"}
|
97481
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97482
|
+
RO2S: Client 4cf56c583321e87e92000040 granted access code 7605ab3e7a87e894556fef12fcf347764bfd0a262fe6a552eee4258af31982a9
|
97483
|
+
RO2S: Access token cd1026807391d6fc48bd38567a1ba7c87275b8f5dc6d8cc6b21c771152cdd76c granted to client UberClient, identity Batman
|
97484
|
+
RO2S: Client UberClient requested code with scope read write
|
97485
|
+
|
97486
|
+
|
97487
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97488
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000043"}
|
97489
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000043]
|
97490
|
+
|
97491
|
+
|
97492
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97493
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000043"}
|
97494
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97495
|
+
RO2S: Client 4cf56c583321e87e92000042 granted access code c9012a7630ff1fc7f5a432451dee320e5035bb5d59a18254731f34ab9f5af081
|
97496
|
+
RO2S: Access token 67dffbdb10757f62ebad63e002c9d502ca9c9a7dff3755fbaad16ac520195aaf granted to client UberClient, identity Batman
|
97497
|
+
RO2S: Client UberClient requested code with scope read write
|
97498
|
+
|
97499
|
+
|
97500
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97501
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000045"}
|
97502
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000045]
|
97503
|
+
|
97504
|
+
|
97505
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97506
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000045"}
|
97507
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97508
|
+
RO2S: Client 4cf56c583321e87e92000044 granted access code 523b10cf1ed82ba2d14e0965c352a97f821767ffdf232d88d862a8a00c02b438
|
97509
|
+
RO2S: Access token 23ef307921baecd026b4ddb470c63691dedd63052fd4cacafebfc81b09b8ce98 granted to client UberClient, identity Batman
|
97510
|
+
RO2S: Client UberClient requested code with scope read write
|
97511
|
+
|
97512
|
+
|
97513
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97514
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000047"}
|
97515
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000047]
|
97516
|
+
|
97517
|
+
|
97518
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97519
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000047"}
|
97520
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97521
|
+
RO2S: Client 4cf56c583321e87e92000046 granted access code 31879f6a561d9b1087c716b1aebd47b0e738354e8446283dddb01db417825d83
|
97522
|
+
RO2S: Access token 0ca931fde38c43b1851489dae3047b38d54d37f5031b3a2abdc5492d84643ca8 granted to client UberClient, identity Batman
|
97523
|
+
RO2S: Client UberClient requested code with scope read write
|
97524
|
+
|
97525
|
+
|
97526
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97527
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000049"}
|
97528
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000049]
|
97529
|
+
|
97530
|
+
|
97531
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97532
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000049"}
|
97533
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97534
|
+
RO2S: Client 4cf56c583321e87e92000048 granted access code 915cfbeb03c88bf14428ea254a3b41dc0fd0bffbb95d8e76ae819fd41eb50abd
|
97535
|
+
RO2S: Access token 3e87bb3130361982bef2d7dacfc8d676a07b3d6cf4db2b41bd7c33e185c15682 granted to client UberClient, identity Batman
|
97536
|
+
RO2S: Client UberClient requested code with scope read write
|
97537
|
+
|
97538
|
+
|
97539
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97540
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200004b"}
|
97541
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200004b]
|
97542
|
+
|
97543
|
+
|
97544
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97545
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200004b"}
|
97546
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97547
|
+
RO2S: Client 4cf56c583321e87e9200004a granted access code 94695fea0a95d80f87814ef8b7cc8c8e51fb90ef34970e19cc313ede07ca5cb7
|
97548
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97549
|
+
RO2S: Client UberClient requested code with scope read write
|
97550
|
+
|
97551
|
+
|
97552
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97553
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200004d"}
|
97554
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200004d]
|
97555
|
+
|
97556
|
+
|
97557
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97558
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200004d"}
|
97559
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97560
|
+
RO2S: Client 4cf56c583321e87e9200004c granted access code cd97df5bcb22c99ce85b1a2f9fb51429549b517d03912bf0e86b1a31b1e3c224
|
97561
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97562
|
+
RO2S: Client UberClient requested code with scope read write
|
97563
|
+
|
97564
|
+
|
97565
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97566
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200004f"}
|
97567
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200004f]
|
97568
|
+
|
97569
|
+
|
97570
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97571
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200004f"}
|
97572
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97573
|
+
RO2S: Client 4cf56c583321e87e9200004e granted access code a98abe665350f46c19a8b130ab2891421a11e502b5ab487b598bc0b6fd51bf01
|
97574
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97575
|
+
RO2S: Client UberClient requested code with scope read write
|
97576
|
+
|
97577
|
+
|
97578
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97579
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000051"}
|
97580
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000051]
|
97581
|
+
|
97582
|
+
|
97583
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97584
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000051"}
|
97585
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97586
|
+
RO2S: Client 4cf56c583321e87e92000050 granted access code feb993bb30b8a68d2258f33117d2ec080af14c903765a6250e81e5cae0a61862
|
97587
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97588
|
+
RO2S: Client UberClient requested code with scope read write
|
97589
|
+
|
97590
|
+
|
97591
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97592
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000053"}
|
97593
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000053]
|
97594
|
+
|
97595
|
+
|
97596
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97597
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000053"}
|
97598
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97599
|
+
RO2S: Client 4cf56c583321e87e92000052 granted access code a30188b2d4a18062b34953d94fd20c7685493ebeac34ef38deba8b7d46722d23
|
97600
|
+
RO2S: Access token request error invalid_grant: Wrong redirect URI
|
97601
|
+
RO2S: Client UberClient requested code with scope read write
|
97602
|
+
|
97603
|
+
|
97604
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97605
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000055"}
|
97606
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000055]
|
97607
|
+
|
97608
|
+
|
97609
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97610
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000055"}
|
97611
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97612
|
+
RO2S: Client 4cf56c583321e87e92000054 granted access code 9d44110a340fd29e3368bb8764298caec213191f99e2ba009cc4ce506be31aad
|
97613
|
+
RO2S: Access token request error invalid_grant: Wrong redirect URI
|
97614
|
+
RO2S: Client UberClient requested code with scope read write
|
97615
|
+
|
97616
|
+
|
97617
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97618
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000057"}
|
97619
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000057]
|
97620
|
+
|
97621
|
+
|
97622
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97623
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000057"}
|
97624
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97625
|
+
RO2S: Client 4cf56c583321e87e92000056 granted access code f20cfb3219c135d0a0d30b3b4df9a90a50a897886fa00a8e88b2465906af576c
|
97626
|
+
RO2S: Access token request error invalid_grant: Wrong redirect URI
|
97627
|
+
RO2S: Client UberClient requested code with scope read write
|
97628
|
+
|
97629
|
+
|
97630
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97631
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000059"}
|
97632
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000059]
|
97633
|
+
|
97634
|
+
|
97635
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97636
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000059"}
|
97637
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97638
|
+
RO2S: Client 4cf56c583321e87e92000058 granted access code b6498024516f7c87e2af44b1b75ddb50d29ed099497331e6c1d600aea72b36ab
|
97639
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97640
|
+
RO2S: Client UberClient requested code with scope read write
|
97641
|
+
|
97642
|
+
|
97643
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97644
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200005b"}
|
97645
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200005b]
|
97646
|
+
|
97647
|
+
|
97648
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97649
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200005b"}
|
97650
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97651
|
+
RO2S: Client 4cf56c583321e87e9200005a granted access code aa1aa8287f897d51579f117c524528107962a8353356c9cd459b5488f591a655
|
97652
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97653
|
+
RO2S: Client UberClient requested code with scope read write
|
97654
|
+
|
97655
|
+
|
97656
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97657
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200005d"}
|
97658
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200005d]
|
97659
|
+
|
97660
|
+
|
97661
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97662
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200005d"}
|
97663
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97664
|
+
RO2S: Client 4cf56c583321e87e9200005c granted access code 67dd7a7ea29eea97726288010b29d3ab6891443406c1ad46705d8ef04aac4d89
|
97665
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
97666
|
+
RO2S: Client UberClient requested code with scope read write
|
97667
|
+
|
97668
|
+
|
97669
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97670
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200005f"}
|
97671
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200005f]
|
97672
|
+
|
97673
|
+
|
97674
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97675
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200005f"}
|
97676
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97677
|
+
RO2S: Client 4cf56c583321e87e9200005e granted access code 2b28a802a947c076f4e1daba9623b3caaa52640de64c0f35c72df24af76933e9
|
97678
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97679
|
+
RO2S: Client UberClient requested code with scope read write
|
97680
|
+
|
97681
|
+
|
97682
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97683
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000061"}
|
97684
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000061]
|
97685
|
+
|
97686
|
+
|
97687
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97688
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000061"}
|
97689
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97690
|
+
RO2S: Client 4cf56c583321e87e92000060 granted access code 50e36fa6571ffc3ed2d9c8075ee65cd77142056419f2f220af79a2e52d83ca71
|
97691
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97692
|
+
RO2S: Client UberClient requested code with scope read write
|
97693
|
+
|
97694
|
+
|
97695
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97696
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000063"}
|
97697
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000063]
|
97698
|
+
|
97699
|
+
|
97700
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97701
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000063"}
|
97702
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97703
|
+
RO2S: Client 4cf56c583321e87e92000062 granted access code 7c11cf7c2a0c8c3c0aee4f38cb2834e8c16916a42a7be2d3591cbd2f10f13aba
|
97704
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97705
|
+
RO2S: Client UberClient requested code with scope read write
|
97706
|
+
|
97707
|
+
|
97708
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97709
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000065"}
|
97710
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000065]
|
97711
|
+
|
97712
|
+
|
97713
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97714
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000065"}
|
97715
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97716
|
+
RO2S: Client 4cf56c583321e87e92000064 granted access code 650b2539c6f23d5a9a943ab0b784ab66e39b4bf88a6dba842df4992ca61d5d4d
|
97717
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97718
|
+
RO2S: Client UberClient requested code with scope read write
|
97719
|
+
|
97720
|
+
|
97721
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97722
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000067"}
|
97723
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000067]
|
97724
|
+
|
97725
|
+
|
97726
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97727
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000067"}
|
97728
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97729
|
+
RO2S: Client 4cf56c583321e87e92000066 granted access code d2b213ee18e8a62e6820554f81a2af0e37a0eedfd3f2cac88650e4e975f8b960
|
97730
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97731
|
+
RO2S: Client UberClient requested code with scope read write
|
97732
|
+
|
97733
|
+
|
97734
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97735
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000069"}
|
97736
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000069]
|
97737
|
+
|
97738
|
+
|
97739
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97740
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000069"}
|
97741
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97742
|
+
RO2S: Client 4cf56c583321e87e92000068 granted access code 27157d30b1d0993001ea7b2ff441d2452a5519e2f89c78ae9c22b4a6e185cdbb
|
97743
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97744
|
+
RO2S: Client UberClient requested code with scope read write
|
97745
|
+
|
97746
|
+
|
97747
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97748
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200006b"}
|
97749
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200006b]
|
97750
|
+
|
97751
|
+
|
97752
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97753
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200006b"}
|
97754
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97755
|
+
RO2S: Client 4cf56c583321e87e9200006a granted access code f1f296ff90347d6aad335296973a029fd808ac105c06503078da1859ddce5522
|
97756
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97757
|
+
RO2S: Client UberClient requested code with scope read write
|
97758
|
+
|
97759
|
+
|
97760
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97761
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200006d"}
|
97762
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200006d]
|
97763
|
+
|
97764
|
+
|
97765
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97766
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200006d"}
|
97767
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97768
|
+
RO2S: Client 4cf56c583321e87e9200006c granted access code f90a1ad5c70c240776f0eb6b2e19e989c29f44e82e345fa943738edc0ea4af53
|
97769
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
97770
|
+
RO2S: Client UberClient requested code with scope read write
|
97771
|
+
|
97772
|
+
|
97773
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97774
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200006f"}
|
97775
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200006f]
|
97776
|
+
|
97777
|
+
|
97778
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97779
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200006f"}
|
97780
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97781
|
+
RO2S: Client 4cf56c583321e87e9200006e granted access code 963a178fae0ae36acd2da0fa2d02223576c64ad6d904599a0a40e624ededdddd
|
97782
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
97783
|
+
RO2S: Client UberClient requested code with scope read write
|
97784
|
+
|
97785
|
+
|
97786
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97787
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000071"}
|
97788
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000071]
|
97789
|
+
|
97790
|
+
|
97791
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97792
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000071"}
|
97793
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97794
|
+
RO2S: Client 4cf56c583321e87e92000070 granted access code 12ce3fd9fb0daeb1a3e34d00b494a1ce39ef0fc83f7f2f10abe4b179da5d4c71
|
97795
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
97796
|
+
RO2S: Client UberClient requested code with scope read write
|
97797
|
+
|
97798
|
+
|
97799
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97800
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000073"}
|
97801
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000073]
|
97802
|
+
|
97803
|
+
|
97804
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97805
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000073"}
|
97806
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97807
|
+
RO2S: Client 4cf56c583321e87e92000072 granted access code 8d888ad3dcc33961852ae84f0dfede8a8f8698166fed8a18773a43b4238b21ff
|
97808
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
97809
|
+
RO2S: Client UberClient requested code with scope read write
|
97810
|
+
|
97811
|
+
|
97812
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97813
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000075"}
|
97814
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000075]
|
97815
|
+
|
97816
|
+
|
97817
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97818
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000075"}
|
97819
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97820
|
+
RO2S: Client 4cf56c583321e87e92000074 granted access code 4b0bfc5512d58e725d5e65fefe16949786e775b02364e5a7d9446abe4c40adeb
|
97821
|
+
RO2S: Access token 79b1bb4acc27afa05990b82678583b9f85c749b836b3d9bb6b65a4a458bbac50 granted to client No rediret, identity foo bar
|
97822
|
+
RO2S: Client UberClient requested code with scope read write
|
97823
|
+
|
97824
|
+
|
97825
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97826
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000078"}
|
97827
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000078]
|
97828
|
+
|
97829
|
+
|
97830
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97831
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000078"}
|
97832
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97833
|
+
RO2S: Client 4cf56c583321e87e92000077 granted access code 43eaff8ac4973172b918a3cf8c05001d14320fc2a30109f164032bda01898f03
|
97834
|
+
RO2S: Access token 2dce43a9e215a80a3687ed39e134de4121be50dcb30ffeeb7ce6205a0b296ff2 granted to client No rediret, identity foo bar
|
97835
|
+
RO2S: Client UberClient requested code with scope read write
|
97836
|
+
|
97837
|
+
|
97838
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97839
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200007b"}
|
97840
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200007b]
|
97841
|
+
|
97842
|
+
|
97843
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97844
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200007b"}
|
97845
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97846
|
+
RO2S: Client 4cf56c583321e87e9200007a granted access code 3d93e22e98a8afd8a72bbfc508bd46c9d6efda55856a944537760593cab18db1
|
97847
|
+
RO2S: Access token 46215c18ff9ba077edf497905cdff4526340a5a761e40f34439d97ac749a2301 granted to client No rediret, identity foo bar
|
97848
|
+
RO2S: Client UberClient requested code with scope read write
|
97849
|
+
|
97850
|
+
|
97851
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97852
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200007e"}
|
97853
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200007e]
|
97854
|
+
|
97855
|
+
|
97856
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97857
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200007e"}
|
97858
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97859
|
+
RO2S: Client 4cf56c583321e87e9200007d granted access code 48db5e14bec88ef522a6feb8185909bd856b4d9dcb52df0c88570d55b90c3e9f
|
97860
|
+
RO2S: Access token 37259bce1332e8fd61979250d83bcc8c0a0d7cd7a1c0acc477435c1734f63907 granted to client No rediret, identity foo bar
|
97861
|
+
RO2S: Client UberClient requested code with scope read write
|
97862
|
+
|
97863
|
+
|
97864
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97865
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000081"}
|
97866
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000081]
|
97867
|
+
|
97868
|
+
|
97869
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97870
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000081"}
|
97871
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97872
|
+
RO2S: Client 4cf56c583321e87e92000080 granted access code 9c0fe2fbd336f1af192e63a6eb0a5a4bd4c928f50c8187059f754f549565cb9e
|
97873
|
+
RO2S: Access token 935b809e60beac0878e831a257abd545accbeb0293ba583f198c6fbb4643e426 granted to client No rediret, identity foo bar
|
97874
|
+
RO2S: Client UberClient requested code with scope read write
|
97875
|
+
|
97876
|
+
|
97877
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97878
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000084"}
|
97879
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000084]
|
97880
|
+
|
97881
|
+
|
97882
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97883
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000084"}
|
97884
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97885
|
+
RO2S: Client 4cf56c583321e87e92000083 granted access code 82f132d86b08b194ad08150723895b82ded1f4c3f6d588588916816d7f376a0c
|
97886
|
+
RO2S: Access token 79f99a07d2b3d4422999c4b119f68c72a7245d73c14e8cf9972c8b878912c691 granted to client No rediret, identity foo bar
|
97887
|
+
RO2S: Client UberClient requested code with scope read write
|
97888
|
+
|
97889
|
+
|
97890
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97891
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000087"}
|
97892
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000087]
|
97893
|
+
|
97894
|
+
|
97895
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97896
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000087"}
|
97897
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97898
|
+
RO2S: Client 4cf56c583321e87e92000086 granted access code 7568c2a4b6518530374b0895d13c6d1b2fff3233e18d13798632c021ff1d7304
|
97899
|
+
RO2S: Access token 9c81cd155e764e465621d78590b8151dfbe61820d532abc9ce4cb5c7b6f29f76 granted to client UberClient, identity Batman
|
97900
|
+
RO2S: Client UberClient requested code with scope read write
|
97901
|
+
|
97902
|
+
|
97903
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97904
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000089"}
|
97905
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e92000089]
|
97906
|
+
|
97907
|
+
|
97908
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:52) [POST]
|
97909
|
+
Parameters: {"authorization"=>"4cf56c583321e87e92000089"}
|
97910
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97911
|
+
RO2S: Client 4cf56c583321e87e92000088 granted access code 188fcfb3accb08407ca165e0bcf4265bb9a790b155cf762755957f68126380d1
|
97912
|
+
RO2S: Access token b625431a909c01c5819ba4b8cbdb46221ec4c4992cb716f701de58c5f079bd80 granted to client UberClient, identity Batman
|
97913
|
+
RO2S: Client UberClient requested code with scope read write
|
97914
|
+
|
97915
|
+
|
97916
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:52) [GET]
|
97917
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200008b"}
|
97918
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c583321e87e9200008b]
|
97919
|
+
|
97920
|
+
|
97921
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
97922
|
+
Parameters: {"authorization"=>"4cf56c583321e87e9200008b"}
|
97923
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97924
|
+
RO2S: Client 4cf56c583321e87e9200008a granted access code 8f1850682b48aa05a174234ddea1d5e7f89ac31ee5a90d244180c1348ff0c207
|
97925
|
+
RO2S: Access token 4ea4c2484b8637e16eacaa9a81e9c08c65ed269e6135df2f1b65b9de1d34a1be granted to client UberClient, identity Batman
|
97926
|
+
RO2S: Client UberClient requested code with scope read write
|
97927
|
+
|
97928
|
+
|
97929
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
97930
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200008d"}
|
97931
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e9200008d]
|
97932
|
+
|
97933
|
+
|
97934
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
97935
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200008d"}
|
97936
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97937
|
+
RO2S: Client 4cf56c593321e87e9200008c granted access code cdd6f0a2fdd29989fdbdae9df2a02213073c1e664df1815230bc80fdcba9e81a
|
97938
|
+
RO2S: Access token eca0dd4b5977b75615277de9e68d6958ebe7cd166c9dcc9d0f640356fb6feb14 granted to client UberClient, identity Batman
|
97939
|
+
RO2S: Client UberClient requested code with scope read write
|
97940
|
+
|
97941
|
+
|
97942
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
97943
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200008f"}
|
97944
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e9200008f]
|
97945
|
+
|
97946
|
+
|
97947
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
97948
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200008f"}
|
97949
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97950
|
+
RO2S: Client 4cf56c593321e87e9200008e granted access code 76b383e65d6866bf294076c3469361dd24c1319ea439b04f181c2a13417809f4
|
97951
|
+
RO2S: Access token 69361c120d1ffdb7ad8d20e02c1daa2a0c87a512b8bbd47fcf2fd023ca3e4138 granted to client UberClient, identity Batman
|
97952
|
+
RO2S: Client UberClient requested code with scope read write
|
97953
|
+
|
97954
|
+
|
97955
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
97956
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000091"}
|
97957
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e92000091]
|
97958
|
+
|
97959
|
+
|
97960
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
97961
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000091"}
|
97962
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97963
|
+
RO2S: Client 4cf56c593321e87e92000090 granted access code df008284796489b36c67e13a53cb74437059f215487afeb9a2a7c728eb81b3fe
|
97964
|
+
RO2S: Access token 6be8055663d749320f4f2ec3fa214c8a3343fac59c4f3d3d61bb196fb556ee0e granted to client UberClient, identity Batman
|
97965
|
+
RO2S: Client UberClient requested code with scope read write
|
97966
|
+
|
97967
|
+
|
97968
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
97969
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000093"}
|
97970
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e92000093]
|
97971
|
+
|
97972
|
+
|
97973
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
97974
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000093"}
|
97975
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97976
|
+
RO2S: Client 4cf56c593321e87e92000092 granted access code fd1fba4a2eed1fee64b6155f8ac8ce52f59c34d32d4b77812726ce1fc1c50d13
|
97977
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
97978
|
+
RO2S: Client UberClient requested code with scope read write
|
97979
|
+
|
97980
|
+
|
97981
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
97982
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000095"}
|
97983
|
+
Completed in 5ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e92000095]
|
97984
|
+
|
97985
|
+
|
97986
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
97987
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000095"}
|
97988
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
97989
|
+
RO2S: Client 4cf56c593321e87e92000094 granted access code 92fd2f14abcecd176ae6ccebc2e2e8ba065cb2f109670d2cbfc1938e197980fb
|
97990
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
97991
|
+
RO2S: Client UberClient requested code with scope read write
|
97992
|
+
|
97993
|
+
|
97994
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
97995
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000097"}
|
97996
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e92000097]
|
97997
|
+
|
97998
|
+
|
97999
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98000
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000097"}
|
98001
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98002
|
+
RO2S: Client 4cf56c593321e87e92000096 granted access code 5a52bd78d53b3976122e032bd3b2d61cad6a8833602d8f5e4d6964ff8744018e
|
98003
|
+
RO2S: Access token request error invalid_grant: Missing username/password
|
98004
|
+
RO2S: Client UberClient requested code with scope read write
|
98005
|
+
|
98006
|
+
|
98007
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98008
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000099"}
|
98009
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e92000099]
|
98010
|
+
|
98011
|
+
|
98012
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98013
|
+
Parameters: {"authorization"=>"4cf56c593321e87e92000099"}
|
98014
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98015
|
+
RO2S: Client 4cf56c593321e87e92000098 granted access code 04bb05be817291d5047c3ff3e8bdbd9df4dffe818c79210935fd009f66fc2539
|
98016
|
+
RO2S: Access token request error invalid_grant: Username/password do not match
|
98017
|
+
RO2S: Client UberClient requested code with scope read write
|
98018
|
+
|
98019
|
+
|
98020
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98021
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200009b"}
|
98022
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e9200009b]
|
98023
|
+
|
98024
|
+
|
98025
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98026
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200009b"}
|
98027
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98028
|
+
RO2S: Client 4cf56c593321e87e9200009a granted access code a7928249465831b4b52b6e803f7289fb9e6ae0a67d490cb63ed15c3156eb8dc7
|
98029
|
+
RO2S: Access token request error invalid_grant: Username/password do not match
|
98030
|
+
RO2S: Client UberClient requested code with scope read write
|
98031
|
+
|
98032
|
+
|
98033
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98034
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200009d"}
|
98035
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e9200009d]
|
98036
|
+
|
98037
|
+
|
98038
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98039
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200009d"}
|
98040
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98041
|
+
RO2S: Client 4cf56c593321e87e9200009c granted access code 87f0c9bada02b4eee2364ea04552385c21c6c3779b0662ad5aa8dea77afef9ce
|
98042
|
+
RO2S: Access token request error invalid_grant: Username/password do not match
|
98043
|
+
RO2S: Client UberClient requested code with scope read write
|
98044
|
+
|
98045
|
+
|
98046
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98047
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200009f"}
|
98048
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e9200009f]
|
98049
|
+
|
98050
|
+
|
98051
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98052
|
+
Parameters: {"authorization"=>"4cf56c593321e87e9200009f"}
|
98053
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98054
|
+
RO2S: Client 4cf56c593321e87e9200009e granted access code 28dacc11b9dc6f789aaf78e52978fde03113229af8be659e21cb2e4ee2aec476
|
98055
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
98056
|
+
RO2S: Client UberClient requested code with scope read write
|
98057
|
+
|
98058
|
+
|
98059
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98060
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a1"}
|
98061
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000a1]
|
98062
|
+
|
98063
|
+
|
98064
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98065
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a1"}
|
98066
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98067
|
+
RO2S: Client 4cf56c593321e87e920000a0 granted access code 235f3952d0b18e79862fc56e78f90de5d7de90dfc016149900ff92dc22134298
|
98068
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
98069
|
+
RO2S: Client UberClient requested code with scope read write
|
98070
|
+
|
98071
|
+
|
98072
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98073
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a3"}
|
98074
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000a3]
|
98075
|
+
|
98076
|
+
|
98077
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98078
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a3"}
|
98079
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98080
|
+
RO2S: Client 4cf56c593321e87e920000a2 granted access code 67a723595847a4c558073cc51339eafafc1270e633a1f8a79df3fa7508626efd
|
98081
|
+
RO2S: Access token request error invalid_grant: Wrong client
|
98082
|
+
RO2S: Client UberClient requested code with scope read write
|
98083
|
+
|
98084
|
+
|
98085
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98086
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a5"}
|
98087
|
+
Completed in 5ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000a5]
|
98088
|
+
|
98089
|
+
|
98090
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98091
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a5"}
|
98092
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98093
|
+
RO2S: Client 4cf56c593321e87e920000a4 granted access code f25fdf07989bd1ca0157c28e828317682e21fd988fc1b8fa22acbb714725dc06
|
98094
|
+
RO2S: Access token request error unsupported_grant_type: This access grant type is not supported by this server.
|
98095
|
+
RO2S: Client UberClient requested code with scope read write
|
98096
|
+
|
98097
|
+
|
98098
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98099
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a7"}
|
98100
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000a7]
|
98101
|
+
|
98102
|
+
|
98103
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98104
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a7"}
|
98105
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98106
|
+
RO2S: Client 4cf56c593321e87e920000a6 granted access code b28b394e5ee7a9a712fe2f7276f4ba493fc14b66c8126c4c9af9f468fb9a2b6c
|
98107
|
+
RO2S: Access token request error unsupported_grant_type: This access grant type is not supported by this server.
|
98108
|
+
RO2S: Client UberClient requested code with scope read write
|
98109
|
+
|
98110
|
+
|
98111
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98112
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a9"}
|
98113
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000a9]
|
98114
|
+
|
98115
|
+
|
98116
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98117
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000a9"}
|
98118
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98119
|
+
RO2S: Client 4cf56c593321e87e920000a8 granted access code f69aa63873e9334710915865a3324df256dc67549251e4e10386509474c64667
|
98120
|
+
RO2S: Access token request error unsupported_grant_type: This access grant type is not supported by this server.
|
98121
|
+
RO2S: Client UberClient requested code with scope read write
|
98122
|
+
|
98123
|
+
|
98124
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98125
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000ab"}
|
98126
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000ab]
|
98127
|
+
|
98128
|
+
|
98129
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98130
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000ab"}
|
98131
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98132
|
+
RO2S: Client 4cf56c593321e87e920000aa granted access code 5574728efb962f2eb27303bf51dcd7eecbbffa75734e3c5aa5c02a0048c6615f
|
98133
|
+
RO2S: Access token request error invalid_scope: The requested scope is not supported.
|
98134
|
+
RO2S: Client UberClient requested code with scope read write
|
98135
|
+
|
98136
|
+
|
98137
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98138
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000ad"}
|
98139
|
+
Completed in 4ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000ad]
|
98140
|
+
|
98141
|
+
|
98142
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98143
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000ad"}
|
98144
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98145
|
+
RO2S: Client 4cf56c593321e87e920000ac granted access code 015584696a8462c53a3ff0ee8d15da5cc43bc1f8bbbe536df2275afb6e6da6e1
|
98146
|
+
RO2S: Access token request error invalid_scope: The requested scope is not supported.
|
98147
|
+
RO2S: Client UberClient requested code with scope read write
|
98148
|
+
|
98149
|
+
|
98150
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98151
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000af"}
|
98152
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000af]
|
98153
|
+
|
98154
|
+
|
98155
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98156
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000af"}
|
98157
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98158
|
+
RO2S: Client 4cf56c593321e87e920000ae granted access code 7f7e125faa8b0f8406e63902de688154e5362166d788415ab0b1dc6fccb49f63
|
98159
|
+
RO2S: Access token request error invalid_scope: The requested scope is not supported.
|
98160
|
+
RO2S: Client UberClient requested code with scope read write
|
98161
|
+
|
98162
|
+
|
98163
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98164
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b1"}
|
98165
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000b1]
|
98166
|
+
|
98167
|
+
|
98168
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98169
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b1"}
|
98170
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98171
|
+
RO2S: Client 4cf56c593321e87e920000b0 granted access code 3c6dc69a016772580a0f2eab5336725437faa62a38ae33bad937efbb0931dc41
|
98172
|
+
RO2S: Access token 7b0a23de1205d2c093b48d20c4b48cc27c76eb440c7e76e15594d91c48fbd9aa granted to client UberClient, identity Batman
|
98173
|
+
RO2S: Client UberClient requested code with scope read write
|
98174
|
+
|
98175
|
+
|
98176
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98177
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b3"}
|
98178
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000b3]
|
98179
|
+
|
98180
|
+
|
98181
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98182
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b3"}
|
98183
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98184
|
+
RO2S: Client 4cf56c593321e87e920000b2 granted access code cf1656fd3d79696890d2dbc2efd54e084c799b8822ab460197a592987d565f9c
|
98185
|
+
RO2S: Access token 6e2c15ae683d291cb0210275930b7b131f2497aea9784d60bf214841be428f4e granted to client UberClient, identity Batman
|
98186
|
+
RO2S: Client UberClient requested code with scope read write
|
98187
|
+
|
98188
|
+
|
98189
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98190
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b5"}
|
98191
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000b5]
|
98192
|
+
|
98193
|
+
|
98194
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98195
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b5"}
|
98196
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98197
|
+
RO2S: Client 4cf56c593321e87e920000b4 granted access code 9a38a50463754db84974a185a2249a62373ab7cd2b0f0247d10fade1276cc291
|
98198
|
+
RO2S: Access token d75fd2b3609b15a02282fab411616c398af178abc40b5c68bac445982424fc5a granted to client UberClient, identity Batman
|
98199
|
+
RO2S: Client UberClient requested code with scope read write
|
98200
|
+
|
98201
|
+
|
98202
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98203
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b7"}
|
98204
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000b7]
|
98205
|
+
|
98206
|
+
|
98207
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98208
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b7"}
|
98209
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98210
|
+
RO2S: Client 4cf56c593321e87e920000b6 granted access code e155993cc8dfeb804aae13f9f7d73c8af3c16d87ef506197d8969509d18a3a4d
|
98211
|
+
RO2S: Access token 0fde387e772c8b9ec942aa977f297f5a15ed1ee9609034557fe373e4c3900067 granted to client UberClient, identity Batman
|
98212
|
+
RO2S: Client UberClient requested code with scope read write
|
98213
|
+
|
98214
|
+
|
98215
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98216
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b9"}
|
98217
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000b9]
|
98218
|
+
|
98219
|
+
|
98220
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98221
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000b9"}
|
98222
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98223
|
+
RO2S: Client 4cf56c593321e87e920000b8 granted access code 1a2cdb9f25275e67d12d2765b5091313248d7974bef51e106113cd2a8d5ef02b
|
98224
|
+
RO2S: Access token 11ec59e099d6deda0a001630c9c728c75dade8ddeacf79a05c2645846332528f granted to client UberClient, identity Batman
|
98225
|
+
RO2S: Client UberClient requested code with scope read write
|
98226
|
+
|
98227
|
+
|
98228
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98229
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000bb"}
|
98230
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000bb]
|
98231
|
+
|
98232
|
+
|
98233
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98234
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000bb"}
|
98235
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98236
|
+
RO2S: Client 4cf56c593321e87e920000ba granted access code befe3c053f1eff95a448479e6b6dbe93fd2b79b4f6c9e71bc13b3f18d920c7e8
|
98237
|
+
RO2S: Access token 9914505f4f822889294c5c03380af55c44ff934a9d0bf6a2062bcca00a7c5628 granted to client UberClient, identity Batman
|
98238
|
+
RO2S: Client UberClient requested code with scope read write
|
98239
|
+
|
98240
|
+
|
98241
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98242
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000bd"}
|
98243
|
+
Completed in 6ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000bd]
|
98244
|
+
|
98245
|
+
|
98246
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98247
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000bd"}
|
98248
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98249
|
+
RO2S: Client 4cf56c593321e87e920000bc granted access code 42923924712d6826d60c34cdd6061c514d54a6ec775e6e3c7c73aa893f1d20bf
|
98250
|
+
RO2S: Access token bfd503e83e2ef27ca2598fbaaf46f3b97f82c97824aecd30f0ddcb58ec01c599 granted to client UberClient, identity Batman
|
98251
|
+
RO2S: Client UberClient requested code with scope read write
|
98252
|
+
|
98253
|
+
|
98254
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98255
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000bf"}
|
98256
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000bf]
|
98257
|
+
|
98258
|
+
|
98259
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98260
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000bf"}
|
98261
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98262
|
+
RO2S: Client 4cf56c593321e87e920000be granted access code 2ad2d253f275e6f44711ee0301a37e8b4ae40e025a09e1e62d3e7c9e36183972
|
98263
|
+
RO2S: Access token d01f0ecf9d00484a67e85bb342d6d94a8e1732d74123a6ff6b607a0a47214fa7 granted to client UberClient, identity Batman
|
98264
|
+
RO2S: Client UberClient requested code with scope read write
|
98265
|
+
|
98266
|
+
|
98267
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98268
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c1"}
|
98269
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000c1]
|
98270
|
+
|
98271
|
+
|
98272
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98273
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c1"}
|
98274
|
+
Completed in 2ms (View: 2 | 200 OK [http://example.org/oauth/grant]
|
98275
|
+
RO2S: Client 4cf56c593321e87e920000c0 granted access code f0e23c24840dc2d25e49049d9cf95df7c2b0103c1092f5fe6cb80eddf3cd56aa
|
98276
|
+
RO2S: Access token 6adcea6b4f10a85003022b30ce20b96a0703d6bbf94af120875e00e3550797f6 granted to client UberClient, identity Batman
|
98277
|
+
RO2S: Client UberClient requested code with scope read write
|
98278
|
+
|
98279
|
+
|
98280
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98281
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c3"}
|
98282
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000c3]
|
98283
|
+
|
98284
|
+
|
98285
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98286
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c3"}
|
98287
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98288
|
+
RO2S: Client 4cf56c593321e87e920000c2 granted access code b0f6a7a4110887eaeaa0e5df5ef8ffe19164f48eb44dc89ffc6b6c4afe6c26ea
|
98289
|
+
RO2S: Access token f01f5cada259f727b1748800a4da9202e72f2ce5d4340e6745c8bfe0b675f531 granted to client UberClient, identity Batman
|
98290
|
+
RO2S: Client UberClient requested code with scope read write
|
98291
|
+
|
98292
|
+
|
98293
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98294
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c5"}
|
98295
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000c5]
|
98296
|
+
|
98297
|
+
|
98298
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98299
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c5"}
|
98300
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98301
|
+
RO2S: Client 4cf56c593321e87e920000c4 granted access code d5c8334543358aace0e90ee43566ecc074386c36603b4cbf545866b79d5c3ae1
|
98302
|
+
RO2S: Access token fea67d1b0836cc1c6e6c950dcbb39eae7d033f4e93e82d81d8492b4b9d7391c4 granted to client UberClient, identity Batman
|
98303
|
+
RO2S: Client UberClient requested code with scope read write
|
98304
|
+
|
98305
|
+
|
98306
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:53) [GET]
|
98307
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c7"}
|
98308
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c593321e87e920000c7]
|
98309
|
+
|
98310
|
+
|
98311
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:53) [POST]
|
98312
|
+
Parameters: {"authorization"=>"4cf56c593321e87e920000c7"}
|
98313
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98314
|
+
RO2S: Client 4cf56c593321e87e920000c6 granted access code c98628099096c2a19e5e410987a7e73f6ea2f2024ce96a7221ec74d74b927ae5
|
98315
|
+
RO2S: Access token 518bd29a829bbcd3b3b5528fa7b08b28009ee7b9fdf5b6dcd8da0618e8bc4e9a granted to client UberClient, identity Batman
|
98316
|
+
RO2S: Client UberClient requested code with scope read write
|
98317
|
+
|
98318
|
+
|
98319
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98320
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000c9"}
|
98321
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000c9]
|
98322
|
+
|
98323
|
+
|
98324
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98325
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000c9"}
|
98326
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98327
|
+
RO2S: Client 4cf56c5a3321e87e920000c8 granted access code 3ec0c6925abe143e25b89d86d83ff63286e46e26991e93c4c6c35abea72027a7
|
98328
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
98329
|
+
RO2S: Client UberClient requested code with scope read write
|
98330
|
+
|
98331
|
+
|
98332
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98333
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000cb"}
|
98334
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000cb]
|
98335
|
+
|
98336
|
+
|
98337
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98338
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000cb"}
|
98339
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98340
|
+
RO2S: Client 4cf56c5a3321e87e920000ca granted access code 0c269a2c93393ea0fbee42bd3d606b59d34675b63d8f347c67c736536c3c4ef1
|
98341
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
98342
|
+
RO2S: Client UberClient requested code with scope read write
|
98343
|
+
|
98344
|
+
|
98345
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98346
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000cd"}
|
98347
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000cd]
|
98348
|
+
|
98349
|
+
|
98350
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98351
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000cd"}
|
98352
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98353
|
+
RO2S: Client 4cf56c5a3321e87e920000cc granted access code 4a421f8ceeffb564089f3b4f462e75e37766e4ddc188b830b468694b28428f64
|
98354
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
98355
|
+
RO2S: Client UberClient requested code with scope read write
|
98356
|
+
|
98357
|
+
|
98358
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98359
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000cf"}
|
98360
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000cf]
|
98361
|
+
|
98362
|
+
|
98363
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98364
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000cf"}
|
98365
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98366
|
+
RO2S: Client 4cf56c5a3321e87e920000ce granted access code 702b51783be6557968584cf9b76678b22d6dd1090217578f6df82880620f2b9f
|
98367
|
+
RO2S: Access token request error invalid_client: Client ID and client secret do not match.
|
98368
|
+
RO2S: Client UberClient requested code with scope read write
|
98369
|
+
|
98370
|
+
|
98371
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98372
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d1"}
|
98373
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000d1]
|
98374
|
+
|
98375
|
+
|
98376
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98377
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d1"}
|
98378
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98379
|
+
RO2S: Client 4cf56c5a3321e87e920000d0 granted access code 2ee6c040c5bc4258a7c035c71e181c57e885a2e873afad3712c289bbd6acabc5
|
98380
|
+
RO2S: Access token 690f7977ad9b07356c94b16e4d5fecc0c62487072a0de661dbce3fbb38e4d432 granted to client UberClient, identity Batman
|
98381
|
+
RO2S: HTTP authorization failed invalid_token
|
98382
|
+
RO2S: Client UberClient requested code with scope read write
|
98383
|
+
|
98384
|
+
|
98385
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98386
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d3"}
|
98387
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000d3]
|
98388
|
+
|
98389
|
+
|
98390
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98391
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d3"}
|
98392
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98393
|
+
RO2S: Client 4cf56c5a3321e87e920000d2 granted access code f16484bb454a7f1e4a0d3400b9e0ca0ee81eda43522994528d6a9e3a5a841d9e
|
98394
|
+
RO2S: Access token 7e53b234178a17f00c94a8c6fcb03322772de99046203dd36de4a0e259b08e27 granted to client UberClient, identity Batman
|
98395
|
+
RO2S: HTTP authorization failed invalid_token
|
98396
|
+
RO2S: Client UberClient requested code with scope read write
|
98397
|
+
|
98398
|
+
|
98399
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98400
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d5"}
|
98401
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000d5]
|
98402
|
+
|
98403
|
+
|
98404
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98405
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d5"}
|
98406
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98407
|
+
RO2S: Client 4cf56c5a3321e87e920000d4 granted access code 4e661dc3962008b937751ca2aff64fdeddd27069bf309320f2b3b1d1801cb784
|
98408
|
+
RO2S: Access token d23f15ec9a0d7aecdbb8b560b44dabef0f18e66fdedbe450e3752a896adf4c41 granted to client UberClient, identity Batman
|
98409
|
+
RO2S: HTTP authorization failed invalid_token
|
98410
|
+
RO2S: Client UberClient requested code with scope read write
|
98411
|
+
|
98412
|
+
|
98413
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98414
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d7"}
|
98415
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000d7]
|
98416
|
+
|
98417
|
+
|
98418
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98419
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d7"}
|
98420
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98421
|
+
RO2S: Client 4cf56c5a3321e87e920000d6 granted access code 018ca41aa40b5a349ebded3a364b515ffbda3351b07ba6ab1f32a06ecbc5cb3a
|
98422
|
+
RO2S: Access token b8bde24a6dc995395d70c80c899c55b7ed6bf98a94ad8f3e9f1a89b9fe6f5f7b granted to client UberClient, identity Batman
|
98423
|
+
RO2S: HTTP authorization failed invalid_token
|
98424
|
+
RO2S: Client UberClient requested code with scope read write
|
98425
|
+
|
98426
|
+
|
98427
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98428
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d9"}
|
98429
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000d9]
|
98430
|
+
|
98431
|
+
|
98432
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98433
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000d9"}
|
98434
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98435
|
+
RO2S: Client 4cf56c5a3321e87e920000d8 granted access code 69f7b32ba4ccdb89dc200f2468aba6f7452cadd6a7dc90309c7f21eccbe6d7c0
|
98436
|
+
RO2S: Access token cd6b2bc04052a00769d1db744f744fa0fe4999685ace3f19c710daf21efcee1b granted to client UberClient, identity Batman
|
98437
|
+
RO2S: Authorized Batman
|
98438
|
+
|
98439
|
+
|
98440
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98441
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/change]
|
98442
|
+
RO2S: Client UberClient requested code with scope read write
|
98443
|
+
|
98444
|
+
|
98445
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98446
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000db"}
|
98447
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000db]
|
98448
|
+
|
98449
|
+
|
98450
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98451
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000db"}
|
98452
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98453
|
+
RO2S: Client 4cf56c5a3321e87e920000da granted access code 690c78f6781a823a74d4cd8e6ae757bbb304aaa0b6fd0b542cc25ad871bd107d
|
98454
|
+
RO2S: Access token 0b65bb286ccf04f75861a48cc9ceec02ff76789abc53a8543680a1302836eba5 granted to client UberClient, identity Batman
|
98455
|
+
RO2S: Authorized Batman
|
98456
|
+
|
98457
|
+
|
98458
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98459
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
98460
|
+
RO2S: Client UberClient requested code with scope read write
|
98461
|
+
|
98462
|
+
|
98463
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98464
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000dd"}
|
98465
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000dd]
|
98466
|
+
|
98467
|
+
|
98468
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98469
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000dd"}
|
98470
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98471
|
+
RO2S: Client 4cf56c5a3321e87e920000dc granted access code 0dc313b433e592644c88369b79b63c0cf249e0465b40285be6c908445703bb52
|
98472
|
+
RO2S: Access token 60f65c60aa1f68a24fe22e7f0ec737cdade3c5bbe20b53582ff2cd0184cbcd7a granted to client UberClient, identity Batman
|
98473
|
+
|
98474
|
+
|
98475
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98476
|
+
Parameters: {"oauth_token"=>"60f65c60aa1f68a24fe22e7f0ec737cdade3c5bbe20b53582ff2cd0184cbcd7a"}
|
98477
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98478
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98479
|
+
RO2S: Client UberClient requested code with scope read write
|
98480
|
+
|
98481
|
+
|
98482
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98483
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000df"}
|
98484
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000df]
|
98485
|
+
|
98486
|
+
|
98487
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98488
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000df"}
|
98489
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98490
|
+
RO2S: Client 4cf56c5a3321e87e920000de granted access code 7577cf7c634c82e9cc1ec969e9ef4e3fce78921838f6fc7553062ac47b7eb4ee
|
98491
|
+
RO2S: Access token d2efe88e88d2e93a446296fb19b4b851a8ecf8f43d541abff45a16271cba5334 granted to client UberClient, identity Batman
|
98492
|
+
|
98493
|
+
|
98494
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98495
|
+
Parameters: {"oauth_token"=>"d2efe88e88d2e93a446296fb19b4b851a8ecf8f43d541abff45a16271cba5334"}
|
98496
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98497
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98498
|
+
RO2S: Client UberClient requested code with scope read write
|
98499
|
+
|
98500
|
+
|
98501
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98502
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e1"}
|
98503
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000e1]
|
98504
|
+
|
98505
|
+
|
98506
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98507
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e1"}
|
98508
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98509
|
+
RO2S: Client 4cf56c5a3321e87e920000e0 granted access code 46f7e605e1c2f03480bd3a089780a8183709ea9438a484762aae7289912f7fc6
|
98510
|
+
RO2S: Access token b5f600debb82ef9eacaceea1babe67c21aae88c84623773a2df12e6d84b82940 granted to client UberClient, identity Batman
|
98511
|
+
|
98512
|
+
|
98513
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98514
|
+
Parameters: {"oauth_token"=>"b5f600debb82ef9eacaceea1babe67c21aae88c84623773a2df12e6d84b82940"}
|
98515
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98516
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98517
|
+
RO2S: Client UberClient requested code with scope read write
|
98518
|
+
|
98519
|
+
|
98520
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98521
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e3"}
|
98522
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000e3]
|
98523
|
+
|
98524
|
+
|
98525
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98526
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e3"}
|
98527
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98528
|
+
RO2S: Client 4cf56c5a3321e87e920000e2 granted access code ab7dbda7ce40b59d519559e1059de87470c96ab0bca7dc459733961dbdece113
|
98529
|
+
RO2S: Access token 3248749fc5fdd91bb9dc76bca1eca1452a8675f1c04c9fd8a3b75276c91fc1fb granted to client UberClient, identity Batman
|
98530
|
+
|
98531
|
+
|
98532
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98533
|
+
Parameters: {"oauth_token"=>"3248749fc5fdd91bb9dc76bca1eca1452a8675f1c04c9fd8a3b75276c91fc1fb"}
|
98534
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98535
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98536
|
+
RO2S: Client UberClient requested code with scope read write
|
98537
|
+
|
98538
|
+
|
98539
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98540
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e5"}
|
98541
|
+
Completed in 4ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000e5]
|
98542
|
+
|
98543
|
+
|
98544
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98545
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e5"}
|
98546
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98547
|
+
RO2S: Client 4cf56c5a3321e87e920000e4 granted access code 58f39efc157d3bb8eb9d8cf3efd644cde0e35abce52c13187f0d017effcaa596
|
98548
|
+
RO2S: Access token 604b2b8d71debe7bdee84331681cf47c00c6701485ee053154df4734a896ea64 granted to client UberClient, identity Batman
|
98549
|
+
RO2S: HTTP authorization failed invalid_token
|
98550
|
+
RO2S: Client UberClient requested code with scope read write
|
98551
|
+
|
98552
|
+
|
98553
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98554
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e7"}
|
98555
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000e7]
|
98556
|
+
|
98557
|
+
|
98558
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98559
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e7"}
|
98560
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98561
|
+
RO2S: Client 4cf56c5a3321e87e920000e6 granted access code 709ead109656bb9f1d77dde5bee4997ab388f0ea71bc824a4effa74c3ae4737d
|
98562
|
+
RO2S: Access token 71a8e2b0e86361f540d3c6a14cfdd777e6035d0a8b4ceab5e4760c926b12175b granted to client UberClient, identity Batman
|
98563
|
+
RO2S: HTTP authorization failed invalid_token
|
98564
|
+
RO2S: Client UberClient requested code with scope read write
|
98565
|
+
|
98566
|
+
|
98567
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98568
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e9"}
|
98569
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000e9]
|
98570
|
+
|
98571
|
+
|
98572
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98573
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000e9"}
|
98574
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98575
|
+
RO2S: Client 4cf56c5a3321e87e920000e8 granted access code ecaabeaf6253c29806120d8a46a4b4424d0ea4c5fcecbec03da5a7c2b1aaabff
|
98576
|
+
RO2S: Access token f92f86146652a9bbbd7cf382bc7578f5d182125dd6e1d37ecbc5500690adf3da granted to client UberClient, identity Batman
|
98577
|
+
RO2S: HTTP authorization failed invalid_token
|
98578
|
+
RO2S: Client UberClient requested code with scope read write
|
98579
|
+
|
98580
|
+
|
98581
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98582
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000eb"}
|
98583
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000eb]
|
98584
|
+
|
98585
|
+
|
98586
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98587
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000eb"}
|
98588
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98589
|
+
RO2S: Client 4cf56c5a3321e87e920000ea granted access code 24e4374dfc27a8c53d777128cb3134f64e39f6ce4e9c328ffa308a4c886dc367
|
98590
|
+
RO2S: Access token 6df3ad72818814f2892013d043f2e23b847d8bd4373572b881e4e2b899b876c5 granted to client UberClient, identity Batman
|
98591
|
+
RO2S: HTTP authorization failed invalid_token
|
98592
|
+
RO2S: Client UberClient requested code with scope read write
|
98593
|
+
|
98594
|
+
|
98595
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98596
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000ed"}
|
98597
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000ed]
|
98598
|
+
|
98599
|
+
|
98600
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98601
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000ed"}
|
98602
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98603
|
+
RO2S: Client 4cf56c5a3321e87e920000ec granted access code fdcfa521c448fede72aa5f9fc2c39d6f25432920cfcacfeb05eb44316b9ed9c7
|
98604
|
+
RO2S: Access token cf07847fd07d8cbc1b7162c68726221f29278b764590ed075afad42150013d35 granted to client UberClient, identity Batman
|
98605
|
+
RO2S: Authorized Batman
|
98606
|
+
|
98607
|
+
|
98608
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98609
|
+
Parameters: {"oauth_token"=>"cf07847fd07d8cbc1b7162c68726221f29278b764590ed075afad42150013d35"}
|
98610
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
98611
|
+
RO2S: Client UberClient requested code with scope read write
|
98612
|
+
|
98613
|
+
|
98614
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98615
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000ef"}
|
98616
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000ef]
|
98617
|
+
|
98618
|
+
|
98619
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98620
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000ef"}
|
98621
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98622
|
+
RO2S: Client 4cf56c5a3321e87e920000ee granted access code 8b0dfce868508b0fd416530bc43a86e004108dfa64f0a2c8e6ed91f60656b3c7
|
98623
|
+
RO2S: Access token 8cefae068b321d717aabcbb3a02ebf1176643dc1948fcf4f6404ab167cb6193c granted to client UberClient, identity Batman
|
98624
|
+
RO2S: Authorized Batman
|
98625
|
+
|
98626
|
+
|
98627
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98628
|
+
Parameters: {"oauth_token"=>"8cefae068b321d717aabcbb3a02ebf1176643dc1948fcf4f6404ab167cb6193c"}
|
98629
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
98630
|
+
RO2S: Client UberClient requested code with scope read write
|
98631
|
+
|
98632
|
+
|
98633
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98634
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f1"}
|
98635
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000f1]
|
98636
|
+
|
98637
|
+
|
98638
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98639
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f1"}
|
98640
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98641
|
+
RO2S: Client 4cf56c5a3321e87e920000f0 granted access code 9c90a7d7dc4bb1016e530f578a7dcf6b15f8950b367be60383f06ead454383bc
|
98642
|
+
RO2S: Access token dbc83493ffa77f9de6c71aa992b978b19a8610de66394a63726273d94a2ff003 granted to client UberClient, identity Batman
|
98643
|
+
|
98644
|
+
|
98645
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98646
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98647
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98648
|
+
RO2S: Client UberClient requested code with scope read write
|
98649
|
+
|
98650
|
+
|
98651
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98652
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f3"}
|
98653
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000f3]
|
98654
|
+
|
98655
|
+
|
98656
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98657
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f3"}
|
98658
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98659
|
+
RO2S: Client 4cf56c5a3321e87e920000f2 granted access code 9058ff3851f026356d9e583052595859f9ff7ecaddf6bad8effa24ff46ecfbf7
|
98660
|
+
RO2S: Access token ee0f0189753b93f2f283087c64e7c1b929096aa56a57295e0bdc77e05418fc20 granted to client UberClient, identity Batman
|
98661
|
+
|
98662
|
+
|
98663
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98664
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98665
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98666
|
+
RO2S: Client UberClient requested code with scope read write
|
98667
|
+
|
98668
|
+
|
98669
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98670
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f5"}
|
98671
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000f5]
|
98672
|
+
|
98673
|
+
|
98674
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98675
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f5"}
|
98676
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98677
|
+
RO2S: Client 4cf56c5a3321e87e920000f4 granted access code bdcde623e765dc32ac820a0bec5fa5c1d695988d038616cb9a5d053315a55492
|
98678
|
+
RO2S: Access token ca40c7ab80cc69c758749f535769cc50828ec4c993e2540a1519a2464d6f8942 granted to client UberClient, identity Batman
|
98679
|
+
|
98680
|
+
|
98681
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98682
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98683
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98684
|
+
RO2S: Client UberClient requested code with scope read write
|
98685
|
+
|
98686
|
+
|
98687
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98688
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f7"}
|
98689
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000f7]
|
98690
|
+
|
98691
|
+
|
98692
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98693
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f7"}
|
98694
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98695
|
+
RO2S: Client 4cf56c5a3321e87e920000f6 granted access code b825b598d56c241f9dde661222b6084b0f3cf7bd5d97f0446b3c12e5c91ce1d7
|
98696
|
+
RO2S: Access token ddae377e480030ad09d0aeda91879d84e8c47cc7a432542ffff4a47fdbc98a39 granted to client UberClient, identity Batman
|
98697
|
+
|
98698
|
+
|
98699
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98700
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
98701
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
98702
|
+
RO2S: Client UberClient requested code with scope read write
|
98703
|
+
|
98704
|
+
|
98705
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98706
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f9"}
|
98707
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000f9]
|
98708
|
+
|
98709
|
+
|
98710
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98711
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000f9"}
|
98712
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98713
|
+
RO2S: Client 4cf56c5a3321e87e920000f8 granted access code 52228986732b39ce5708a240fe9011c4c82d9334de8f8e08dd055f934bf800ce
|
98714
|
+
RO2S: Access token bd8a43a946d343041727efe44d6248781724b44f2e72b7336989a10be181ad09 granted to client UberClient, identity Batman
|
98715
|
+
RO2S: Authorized Batman
|
98716
|
+
|
98717
|
+
|
98718
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98719
|
+
Filter chain halted as [#<Proc:0x000000010204c4c0@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
98720
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
98721
|
+
RO2S: Client UberClient requested code with scope read write
|
98722
|
+
|
98723
|
+
|
98724
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98725
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000fb"}
|
98726
|
+
Completed in 4ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000fb]
|
98727
|
+
|
98728
|
+
|
98729
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98730
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000fb"}
|
98731
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98732
|
+
RO2S: Client 4cf56c5a3321e87e920000fa granted access code 6aa74c9a3b6967130f48c603402739a40e3fce52049286616a176ccffbfda04f
|
98733
|
+
RO2S: Access token c81e9eb1a1e5b07e77dbcc7503f69fc73028b48fc301f8a936e7b9f77145ec87 granted to client UberClient, identity Batman
|
98734
|
+
RO2S: Authorized Batman
|
98735
|
+
|
98736
|
+
|
98737
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98738
|
+
Filter chain halted as [#<Proc:0x000000010204c4c0@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
98739
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
98740
|
+
RO2S: Client UberClient requested code with scope read write
|
98741
|
+
|
98742
|
+
|
98743
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98744
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000fd"}
|
98745
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000fd]
|
98746
|
+
|
98747
|
+
|
98748
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98749
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000fd"}
|
98750
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98751
|
+
RO2S: Client 4cf56c5a3321e87e920000fc granted access code cd390579e2c71c123979b6622e37583d940974e863ec9a2380b09440fcf0045a
|
98752
|
+
RO2S: Access token d7b303506521d0827f4e40981a0efc8bd129566ef5a5e7716ae50a06bc5187b3 granted to client UberClient, identity Batman
|
98753
|
+
RO2S: Authorized Batman
|
98754
|
+
|
98755
|
+
|
98756
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98757
|
+
Filter chain halted as [#<Proc:0x000000010204c4c0@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
98758
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
98759
|
+
RO2S: Client UberClient requested code with scope read write
|
98760
|
+
|
98761
|
+
|
98762
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98763
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000ff"}
|
98764
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5a3321e87e920000ff]
|
98765
|
+
|
98766
|
+
|
98767
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:54) [POST]
|
98768
|
+
Parameters: {"authorization"=>"4cf56c5a3321e87e920000ff"}
|
98769
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98770
|
+
RO2S: Client 4cf56c5a3321e87e920000fe granted access code b1c2d37048632aa7a8b6ea17f60eed49c861fb3973e9dfbd512efc071bba7bde
|
98771
|
+
RO2S: Access token ffae3aa88bfc9dc6f58158b1caf60ffe6230cee72f18e5517ffc4104ae4da802 granted to client UberClient, identity Batman
|
98772
|
+
RO2S: Authorized Batman
|
98773
|
+
|
98774
|
+
|
98775
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-30 13:27:54) [GET]
|
98776
|
+
Filter chain halted as [#<Proc:0x000000010204c4c0@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
98777
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
98778
|
+
RO2S: Client UberClient requested code with scope read write
|
98779
|
+
|
98780
|
+
|
98781
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98782
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000101"}
|
98783
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000101]
|
98784
|
+
|
98785
|
+
|
98786
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98787
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000101"}
|
98788
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98789
|
+
RO2S: Client 4cf56c5b3321e87e92000100 granted access code c01d812865685dbdbb476cf6b9fea3796c6b5ba1cfad1ed5a26331f51c0b845b
|
98790
|
+
RO2S: Access token 871b7a7e0b369d4f313f27719978766111e713164d3414419c8bd0435a821f09 granted to client UberClient, identity Batman
|
98791
|
+
RO2S: Authorized Batman
|
98792
|
+
|
98793
|
+
|
98794
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98795
|
+
Filter chain halted as [#<Proc:0x000000010204c4c0@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:76>] rendered_or_redirected.
|
98796
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
98797
|
+
RO2S: Client UberClient requested code with scope read write
|
98798
|
+
|
98799
|
+
|
98800
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98801
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000103"}
|
98802
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000103]
|
98803
|
+
|
98804
|
+
|
98805
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98806
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000103"}
|
98807
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98808
|
+
RO2S: Client 4cf56c5b3321e87e92000102 granted access code 8eb7f9ce9ac6669925457e14f8552c72ce424c7a67ba46ac717531a1b48980eb
|
98809
|
+
RO2S: Access token 2da53526980c8c6e8fad87b370182e4475a74afa67e34f8b7e384f4edcad5793 granted to client UberClient, identity Batman
|
98810
|
+
|
98811
|
+
|
98812
|
+
Processing ApiController#list_tokens (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98813
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/list_tokens]
|
98814
|
+
RO2S: Client UberClient requested code with scope read write
|
98815
|
+
|
98816
|
+
|
98817
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98818
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000105"}
|
98819
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000105]
|
98820
|
+
|
98821
|
+
|
98822
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98823
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000105"}
|
98824
|
+
Completed in 1ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
98825
|
+
RO2S: Client 4cf56c5b3321e87e92000104 granted access code ebddad5f2f526c0d1a7d6e2d81a61a7a02eaad0f29265b4e9a21ed3c0157f352
|
98826
|
+
RO2S: Access token 1403b7914d889428df96b1bb7d68a8f2cc2f8980551c6bfa1d784034057eaf36 granted to client UberClient, identity Batman
|
98827
|
+
|
98828
|
+
|
98829
|
+
Processing ApiController#list_tokens (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98830
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/list_tokens]
|
98831
|
+
RO2S: Client UberClient requested code with scope read write
|
98832
|
+
|
98833
|
+
|
98834
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98835
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000107"}
|
98836
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000107]
|
98837
|
+
|
98838
|
+
|
98839
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98840
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000107"}
|
98841
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98842
|
+
RO2S: Client 4cf56c5b3321e87e92000106 granted access code 13bb9c7333af94a629d8d7ec2f8ecb8e67841ac03dc7ff566f672cc57d0ea2dc
|
98843
|
+
RO2S: Access token 7307a1ac7b47a36cbfe207c882df3ea5dc8fd7971b48bbc5d3676854ac4fdc2e granted to client UberClient, identity Batman
|
98844
|
+
RO2S: HTTP authorization failed invalid_token
|
98845
|
+
RO2S: Client UberClient requested code with scope read write
|
98846
|
+
|
98847
|
+
|
98848
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98849
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000109"}
|
98850
|
+
Completed in 5ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000109]
|
98851
|
+
|
98852
|
+
|
98853
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98854
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000109"}
|
98855
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98856
|
+
RO2S: Client 4cf56c5b3321e87e92000108 granted access code d1ca6bc149ab7a7fc63fe410671e19061a6ff03eba35b89ecbdf4d5b6da94c47
|
98857
|
+
RO2S: Access token ff4c0384aeec9cd77645ccf9c9c9b4d90a44745daa40ce4a30a6b85c5fc1994a granted to client UberClient, identity Batman
|
98858
|
+
RO2S: HTTP authorization failed invalid_token
|
98859
|
+
RO2S: Client UberClient requested code with scope read write
|
98860
|
+
|
98861
|
+
|
98862
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98863
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200010b"}
|
98864
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200010b]
|
98865
|
+
|
98866
|
+
|
98867
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98868
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200010b"}
|
98869
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98870
|
+
RO2S: Client 4cf56c5b3321e87e9200010a granted access code eec40a21ff27d81afd165f2bbd095d599e6f6f04f68d2c473ee6ac9fa2f36c17
|
98871
|
+
RO2S: Access token 490ebc7fdc9296927c2ada03ba343a4de6dedff3a585e557d266c64e3bca182e granted to client UberClient, identity Batman
|
98872
|
+
RO2S: HTTP authorization failed invalid_token
|
98873
|
+
RO2S: Client UberClient requested code with scope read write
|
98874
|
+
|
98875
|
+
|
98876
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98877
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200010d"}
|
98878
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200010d]
|
98879
|
+
|
98880
|
+
|
98881
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98882
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200010d"}
|
98883
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98884
|
+
RO2S: Client 4cf56c5b3321e87e9200010c granted access code 3ca7c70d52a4bd114584f864ebc697e259daa09b78446a6c83bd352cbc4d28f6
|
98885
|
+
RO2S: Access token 32a9ac687148d98bed27e262fdb5b904c905b07822bced35ad764ae7275a2f79 granted to client UberClient, identity Batman
|
98886
|
+
RO2S: HTTP authorization failed invalid_token
|
98887
|
+
RO2S: Client UberClient requested code with scope read write
|
98888
|
+
|
98889
|
+
|
98890
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98891
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200010f"}
|
98892
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200010f]
|
98893
|
+
|
98894
|
+
|
98895
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98896
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200010f"}
|
98897
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98898
|
+
RO2S: Client 4cf56c5b3321e87e9200010e granted access code b36ffc891add8fa5bd6160472381553df1507e2bf22a8cbb2233549e07dbba40
|
98899
|
+
RO2S: Access token ead86d2d8aa767171f20ea2a2d31254621f19d31a78b9b8a490b37e45c08470a granted to client UberClient, identity Batman
|
98900
|
+
RO2S: HTTP authorization failed invalid_token
|
98901
|
+
RO2S: Client UberClient requested code with scope read write
|
98902
|
+
|
98903
|
+
|
98904
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98905
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000111"}
|
98906
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000111]
|
98907
|
+
|
98908
|
+
|
98909
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98910
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000111"}
|
98911
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98912
|
+
RO2S: Client 4cf56c5b3321e87e92000110 granted access code 852fb73cb38f6e8aef9cb3b9a3d2ae4a67b980dfe585551bc143b044f4f2f740
|
98913
|
+
RO2S: Access token ac1ae56c0b8284e609b5b3151e988162adc84a85119db1c7e396afd42c7a4d74 granted to client UberClient, identity Batman
|
98914
|
+
RO2S: HTTP authorization failed invalid_token
|
98915
|
+
RO2S: Client UberClient requested code with scope read write
|
98916
|
+
|
98917
|
+
|
98918
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98919
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000113"}
|
98920
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000113]
|
98921
|
+
|
98922
|
+
|
98923
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98924
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000113"}
|
98925
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98926
|
+
RO2S: Client 4cf56c5b3321e87e92000112 granted access code 2d0bb72bd636f0ba01f6b8b86cff3f03fc28d2c2a3d357e47449cdbef814f1c7
|
98927
|
+
RO2S: Access token 9d11844007ec1bf0a29379441c7cde56fa86204647d678037f0bfca7fcb73446 granted to client UberClient, identity Batman
|
98928
|
+
RO2S: HTTP authorization failed invalid_token
|
98929
|
+
RO2S: Client UberClient requested code with scope read write
|
98930
|
+
|
98931
|
+
|
98932
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98933
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000115"}
|
98934
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000115]
|
98935
|
+
|
98936
|
+
|
98937
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98938
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000115"}
|
98939
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
98940
|
+
RO2S: Client 4cf56c5b3321e87e92000114 granted access code 0ed6885d90c44be67fef8f542dab1719d1865d3c67376c75117c307e461f8245
|
98941
|
+
RO2S: Access token 6a54d84b53eaff443a6310232a6b1032dd5c1d8ccc98eaa9faad5ff6596e66a3 granted to client UberClient, identity Batman
|
98942
|
+
RO2S: HTTP authorization failed invalid_token
|
98943
|
+
RO2S: Client UberClient requested code with scope read write
|
98944
|
+
|
98945
|
+
|
98946
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98947
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000117"}
|
98948
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000117]
|
98949
|
+
|
98950
|
+
|
98951
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98952
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000117"}
|
98953
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98954
|
+
RO2S: Client 4cf56c5b3321e87e92000116 granted access code f504472d8c0cc4d8e423198c977116eeacf998db53c766809d21a0a283733265
|
98955
|
+
RO2S: Access token fdbcf981836f0f69894632d610e9dadc7346bdef5e2673e57fed1ae396fb9485 granted to client UberClient, identity Batman
|
98956
|
+
RO2S: HTTP authorization failed invalid_token
|
98957
|
+
RO2S: Client UberClient requested code with scope read write
|
98958
|
+
|
98959
|
+
|
98960
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98961
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000119"}
|
98962
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000119]
|
98963
|
+
|
98964
|
+
|
98965
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98966
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000119"}
|
98967
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98968
|
+
RO2S: Client 4cf56c5b3321e87e92000118 granted access code 3644b2d16f29c2f119635a5e6e575114be88334a62a758c69730cc2dbaf99f8d
|
98969
|
+
RO2S: Access token 3b19a96b333082934a76fd6f20f3623f25baadeff3e6d9a177c400f63598e042 granted to client UberClient, identity Batman
|
98970
|
+
RO2S: HTTP authorization failed invalid_token
|
98971
|
+
RO2S: Client UberClient requested code with scope read write
|
98972
|
+
|
98973
|
+
|
98974
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98975
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200011b"}
|
98976
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200011b]
|
98977
|
+
|
98978
|
+
|
98979
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98980
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200011b"}
|
98981
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98982
|
+
RO2S: Client 4cf56c5b3321e87e9200011a granted access code ecfd79bf1088376c0fa146c1da7336c706a4606ee2d2f114c5dee864ecbdd589
|
98983
|
+
RO2S: Access token 690285acab70fce4240d29b86065a667a1ff9b5d212038ebb6da4b9edb7895bc granted to client UberClient, identity Batman
|
98984
|
+
RO2S: HTTP authorization failed invalid_token
|
98985
|
+
RO2S: Client UberClient requested code with scope read write
|
98986
|
+
|
98987
|
+
|
98988
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
98989
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200011d"}
|
98990
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200011d]
|
98991
|
+
|
98992
|
+
|
98993
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
98994
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200011d"}
|
98995
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
98996
|
+
RO2S: Client 4cf56c5b3321e87e9200011c granted access code db4279439a778ce0f836cef15eb031b3b2b916adfd503465504cd86f0988f75e
|
98997
|
+
RO2S: Access token cbb5d3ef9ea4b732675d8bb21cb30a1a007a8fc834aa2e25603b37ebbea3be55 granted to client UberClient, identity Batman
|
98998
|
+
RO2S: HTTP authorization failed invalid_token
|
98999
|
+
RO2S: Client UberClient requested code with scope read write
|
99000
|
+
|
99001
|
+
|
99002
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99003
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200011f"}
|
99004
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200011f]
|
99005
|
+
|
99006
|
+
|
99007
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99008
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200011f"}
|
99009
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99010
|
+
RO2S: Client 4cf56c5b3321e87e9200011e granted access code e2ed2dc39ff822b2b20c6698fcf3217322c4116eb8effdb8021b332656cd04c0
|
99011
|
+
RO2S: Access token 8e2d7c1318bffdd956c54c56b2f427b614083ba5a4ef8c8bd27555b7e717a598 granted to client UberClient, identity Batman
|
99012
|
+
RO2S: Authorized Batman
|
99013
|
+
|
99014
|
+
|
99015
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99016
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
99017
|
+
RO2S: Client UberClient requested code with scope read write
|
99018
|
+
|
99019
|
+
|
99020
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99021
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000121"}
|
99022
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000121]
|
99023
|
+
|
99024
|
+
|
99025
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99026
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000121"}
|
99027
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99028
|
+
RO2S: Client 4cf56c5b3321e87e92000120 granted access code 67e8b8bece95e33e0663557ee056ab23f854d59e5406fca0dd15028f20fea552
|
99029
|
+
RO2S: Access token ff7aff29c58cfa50207eb6c96c83623abb47dffe407bdce0b85cefb50f4bd873 granted to client UberClient, identity Batman
|
99030
|
+
RO2S: Authorized Batman
|
99031
|
+
|
99032
|
+
|
99033
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99034
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
99035
|
+
RO2S: Client UberClient requested code with scope read write
|
99036
|
+
|
99037
|
+
|
99038
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99039
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000123"}
|
99040
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000123]
|
99041
|
+
|
99042
|
+
|
99043
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99044
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000123"}
|
99045
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99046
|
+
RO2S: Client 4cf56c5b3321e87e92000122 granted access code 9356a31cc3d8fb7054971508be8bc8f9b588b41c59cceaca18dd05a79923b76a
|
99047
|
+
RO2S: Access token 0949c94808d552d749259ed3dc795f54dd0d2ca8cd77eaccde4475bc242f2266 granted to client UberClient, identity Batman
|
99048
|
+
|
99049
|
+
|
99050
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99051
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99052
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
99053
|
+
RO2S: Client UberClient requested code with scope read write
|
99054
|
+
|
99055
|
+
|
99056
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99057
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000125"}
|
99058
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000125]
|
99059
|
+
|
99060
|
+
|
99061
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99062
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000125"}
|
99063
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99064
|
+
RO2S: Client 4cf56c5b3321e87e92000124 granted access code 8943845812e0ec5f29e478472f2cd11decc1f8ab0d377cda4bbe58081a30355d
|
99065
|
+
RO2S: Access token c08af7becd8b0d201a111557d66faaea8bb9615dad2618a205db4fb9e00bee0e granted to client UberClient, identity Batman
|
99066
|
+
|
99067
|
+
|
99068
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99069
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99070
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
99071
|
+
RO2S: Client UberClient requested code with scope read write
|
99072
|
+
|
99073
|
+
|
99074
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99075
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000127"}
|
99076
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000127]
|
99077
|
+
|
99078
|
+
|
99079
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99080
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000127"}
|
99081
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99082
|
+
RO2S: Client 4cf56c5b3321e87e92000126 granted access code a0fe24da4f3f61d50ca0171561bc4a19e84878b3e0c4235d8881484597ac0e52
|
99083
|
+
RO2S: Access token 82812248d10e5a18bcb0074be1ab8f9cb191eaeee2a35111104655fc6b768698 granted to client UberClient, identity Batman
|
99084
|
+
|
99085
|
+
|
99086
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99087
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99088
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
99089
|
+
RO2S: Client UberClient requested code with scope read write
|
99090
|
+
|
99091
|
+
|
99092
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99093
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000129"}
|
99094
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000129]
|
99095
|
+
|
99096
|
+
|
99097
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99098
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000129"}
|
99099
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99100
|
+
RO2S: Client 4cf56c5b3321e87e92000128 granted access code 396706f2b8f7f3e468ce32abf3c68544cfcb678b2afbf07d3841baec65da686c
|
99101
|
+
RO2S: Access token 39179a893ded4bdc52e95f8a45438f448462564dbf4068108a29b12d52f03b0d granted to client UberClient, identity Batman
|
99102
|
+
|
99103
|
+
|
99104
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99105
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99106
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
99107
|
+
RO2S: Client UberClient requested code with scope read write
|
99108
|
+
|
99109
|
+
|
99110
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99111
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200012b"}
|
99112
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200012b]
|
99113
|
+
|
99114
|
+
|
99115
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99116
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200012b"}
|
99117
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99118
|
+
RO2S: Client 4cf56c5b3321e87e9200012a granted access code 8d3c386a5e81cab9bae3f0f13dd10dd51518c0925107261b20b2294998368df8
|
99119
|
+
RO2S: Access token a1bfaff6b6f4455c669ea4b4cac7935859d111a7ce4ceb119bcb10ba6c929539 granted to client UberClient, identity Batman
|
99120
|
+
|
99121
|
+
|
99122
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99123
|
+
Parameters: {"oauth_token"=>"a1bfaff6b6f4455c669ea4b4cac7935859d111a7ce4ceb119bcb10ba6c929539"}
|
99124
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99125
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=a1bfaff6b6f4455c669ea4b4cac7935859d111a7ce4ceb119bcb10ba6c929539]
|
99126
|
+
RO2S: Client UberClient requested code with scope read write
|
99127
|
+
|
99128
|
+
|
99129
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99130
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200012d"}
|
99131
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200012d]
|
99132
|
+
|
99133
|
+
|
99134
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99135
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200012d"}
|
99136
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99137
|
+
RO2S: Client 4cf56c5b3321e87e9200012c granted access code 3953d30d72985e4367953cd453b251355582afb6fe3a45b1c762a5bd7e806c89
|
99138
|
+
RO2S: Access token dd6ceab20925a249dd181e1e7baa40457c3469a0a04d3edc6a0b5c131b688944 granted to client UberClient, identity Batman
|
99139
|
+
|
99140
|
+
|
99141
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99142
|
+
Parameters: {"oauth_token"=>"dd6ceab20925a249dd181e1e7baa40457c3469a0a04d3edc6a0b5c131b688944"}
|
99143
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99144
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=dd6ceab20925a249dd181e1e7baa40457c3469a0a04d3edc6a0b5c131b688944]
|
99145
|
+
RO2S: Client UberClient requested code with scope read write
|
99146
|
+
|
99147
|
+
|
99148
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99149
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200012f"}
|
99150
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e9200012f]
|
99151
|
+
|
99152
|
+
|
99153
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99154
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e9200012f"}
|
99155
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99156
|
+
RO2S: Client 4cf56c5b3321e87e9200012e granted access code bc3bd7ba58f9947ee38f1031afc34a99eeb1f45bfe4cf38521a2dc806840ef4c
|
99157
|
+
RO2S: Access token a4da4da4c8f8f1aa5329494a97405307f3f99fac2fee4144d4d665e5fccbbd18 granted to client UberClient, identity Batman
|
99158
|
+
|
99159
|
+
|
99160
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99161
|
+
Parameters: {"oauth_token"=>"a4da4da4c8f8f1aa5329494a97405307f3f99fac2fee4144d4d665e5fccbbd18"}
|
99162
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99163
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=a4da4da4c8f8f1aa5329494a97405307f3f99fac2fee4144d4d665e5fccbbd18]
|
99164
|
+
RO2S: Client UberClient requested code with scope read write
|
99165
|
+
|
99166
|
+
|
99167
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99168
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000131"}
|
99169
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000131]
|
99170
|
+
|
99171
|
+
|
99172
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99173
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000131"}
|
99174
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99175
|
+
RO2S: Client 4cf56c5b3321e87e92000130 granted access code 853f8f5a0caa37f18fbce43c39e88b940d035f47e8f929d619e06b775554a722
|
99176
|
+
RO2S: Access token ccc77316861fbd7a15f457aff83c9845abc9e8163bc07a4764dc5d2449920ed4 granted to client UberClient, identity Batman
|
99177
|
+
|
99178
|
+
|
99179
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99180
|
+
Parameters: {"oauth_token"=>"ccc77316861fbd7a15f457aff83c9845abc9e8163bc07a4764dc5d2449920ed4"}
|
99181
|
+
Filter chain halted as [:oauth_required] rendered_or_redirected.
|
99182
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=ccc77316861fbd7a15f457aff83c9845abc9e8163bc07a4764dc5d2449920ed4]
|
99183
|
+
RO2S: Client UberClient requested code with scope read write
|
99184
|
+
|
99185
|
+
|
99186
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99187
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000133"}
|
99188
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000133]
|
99189
|
+
|
99190
|
+
|
99191
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99192
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000133"}
|
99193
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99194
|
+
RO2S: Client 4cf56c5b3321e87e92000132 granted access code 10a791646fec35f369f662e3cdfd124007df07cabf390417b33d8bc07d925949
|
99195
|
+
RO2S: Access token 6c0c15800059528688263a7bd00a9e054ada0d5615f9088e379cf18b468c0598 granted to client UberClient, identity Batman
|
99196
|
+
RO2S: HTTP authorization failed invalid_token
|
99197
|
+
RO2S: Client UberClient requested code with scope read write
|
99198
|
+
|
99199
|
+
|
99200
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99201
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000135"}
|
99202
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000135]
|
99203
|
+
|
99204
|
+
|
99205
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99206
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000135"}
|
99207
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99208
|
+
RO2S: Client 4cf56c5b3321e87e92000134 granted access code b0fd4f28b121d01c7e888d62fd060cf7ea04325a27d355f23eb6e95e33fb8ed3
|
99209
|
+
RO2S: Access token 4ad4d62bb16c2b048f5a15d105602503f7388810477ee2df995e57b91e200186 granted to client UberClient, identity Batman
|
99210
|
+
RO2S: HTTP authorization failed invalid_token
|
99211
|
+
RO2S: Client UberClient requested code with scope read write
|
99212
|
+
|
99213
|
+
|
99214
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99215
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000137"}
|
99216
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000137]
|
99217
|
+
|
99218
|
+
|
99219
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99220
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000137"}
|
99221
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99222
|
+
RO2S: Client 4cf56c5b3321e87e92000136 granted access code a7653f5946b12fac862ca08d9ec37db1b58122bfb002f16e4e407746e6a8b722
|
99223
|
+
RO2S: Access token 3c4634d0e4d415d2868bad3fe734774cfe692364e62b39a73eb881187183a6a2 granted to client UberClient, identity Batman
|
99224
|
+
RO2S: HTTP authorization failed invalid_token
|
99225
|
+
RO2S: Client UberClient requested code with scope read write
|
99226
|
+
|
99227
|
+
|
99228
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:55) [GET]
|
99229
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000139"}
|
99230
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5b3321e87e92000139]
|
99231
|
+
|
99232
|
+
|
99233
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:55) [POST]
|
99234
|
+
Parameters: {"authorization"=>"4cf56c5b3321e87e92000139"}
|
99235
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99236
|
+
RO2S: Client 4cf56c5b3321e87e92000138 granted access code fbaf025b6ca8642b1b6deb3bb005ee655dcfdca9c5d734bc6ef4601a0d844983
|
99237
|
+
RO2S: Access token 676366798724bdf5cebe741ad1b79bc64e06cc16a97373d2edfac668011e3f1b granted to client UberClient, identity Batman
|
99238
|
+
RO2S: HTTP authorization failed invalid_token
|
99239
|
+
RO2S: Client UberClient requested code with scope read write
|
99240
|
+
|
99241
|
+
|
99242
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99243
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200013b"}
|
99244
|
+
Completed in 11ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e9200013b]
|
99245
|
+
|
99246
|
+
|
99247
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99248
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200013b"}
|
99249
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99250
|
+
RO2S: Client 4cf56c5c3321e87e9200013a granted access code 5e3a25be064334f1bdbfcc6ae1d1e5d7d16a8661bc0be198607915d6f2605768
|
99251
|
+
RO2S: Access token b5f056c20389f461483cb0699318b46c9980b2d3e97e7b317dc53a22e4a7f4ff granted to client UberClient, identity Batman
|
99252
|
+
RO2S: Authorized Batman
|
99253
|
+
|
99254
|
+
|
99255
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99256
|
+
Parameters: {"oauth_token"=>"b5f056c20389f461483cb0699318b46c9980b2d3e97e7b317dc53a22e4a7f4ff"}
|
99257
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private?oauth_token=b5f056c20389f461483cb0699318b46c9980b2d3e97e7b317dc53a22e4a7f4ff]
|
99258
|
+
RO2S: Client UberClient requested code with scope read write
|
99259
|
+
|
99260
|
+
|
99261
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99262
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200013d"}
|
99263
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e9200013d]
|
99264
|
+
|
99265
|
+
|
99266
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99267
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200013d"}
|
99268
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99269
|
+
RO2S: Client 4cf56c5c3321e87e9200013c granted access code 3db58f8616e5353137ec901f49084f276a4e3f46ee57a4c81b258d50b8d0f441
|
99270
|
+
RO2S: Access token 02b794b338e4aef9d951eaa663a7907e1ff8d4419f96e0ad797940077c683233 granted to client UberClient, identity Batman
|
99271
|
+
RO2S: Authorized Batman
|
99272
|
+
|
99273
|
+
|
99274
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99275
|
+
Parameters: {"oauth_token"=>"02b794b338e4aef9d951eaa663a7907e1ff8d4419f96e0ad797940077c683233"}
|
99276
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private?oauth_token=02b794b338e4aef9d951eaa663a7907e1ff8d4419f96e0ad797940077c683233]
|
99277
|
+
RO2S: Client UberClient requested code with scope read write
|
99278
|
+
|
99279
|
+
|
99280
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99281
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200013f"}
|
99282
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e9200013f]
|
99283
|
+
|
99284
|
+
|
99285
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99286
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200013f"}
|
99287
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99288
|
+
RO2S: Client 4cf56c5c3321e87e9200013e granted access code d0b6e091bf57d74abcfdf4c68d5196530e18e975f7ccb009f47a62365f434bb5
|
99289
|
+
RO2S: Access token bc12b0c69dbff3200e41fa89ace405eee8421f89f1a24d9719c2fb9180e42e3c granted to client UberClient, identity Batman
|
99290
|
+
|
99291
|
+
|
99292
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99293
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99294
|
+
RO2S: Client UberClient requested code with scope read write
|
99295
|
+
|
99296
|
+
|
99297
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99298
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000141"}
|
99299
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000141]
|
99300
|
+
|
99301
|
+
|
99302
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99303
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000141"}
|
99304
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99305
|
+
RO2S: Client 4cf56c5c3321e87e92000140 granted access code da92d799b133353a28f76521e939abf77e2c1153bafc9b6b55a14c87ad4e94bd
|
99306
|
+
RO2S: Access token cf8de2e09669b1c19fcac98efaf6171226dec22983b1dcaf14f10a301922ac88 granted to client UberClient, identity Batman
|
99307
|
+
|
99308
|
+
|
99309
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99310
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99311
|
+
RO2S: Client UberClient requested code with scope read write
|
99312
|
+
|
99313
|
+
|
99314
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99315
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000143"}
|
99316
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000143]
|
99317
|
+
|
99318
|
+
|
99319
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99320
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000143"}
|
99321
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99322
|
+
RO2S: Client 4cf56c5c3321e87e92000142 granted access code f61e1ef169b7f1fbde813a551475faeab631caebafc1a266d13b2ecbdb258fc3
|
99323
|
+
RO2S: Access token ec9d43725004522d35afb135d72cace33f9de27985bfbae31c142d1fb6017504 granted to client UberClient, identity Batman
|
99324
|
+
RO2S: Authorized Batman
|
99325
|
+
|
99326
|
+
|
99327
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99328
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99329
|
+
RO2S: Client UberClient requested code with scope read write
|
99330
|
+
|
99331
|
+
|
99332
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99333
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000145"}
|
99334
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000145]
|
99335
|
+
|
99336
|
+
|
99337
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99338
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000145"}
|
99339
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99340
|
+
RO2S: Client 4cf56c5c3321e87e92000144 granted access code 5516920e2f1be04ddb09fd78a122e8c2a2d3297024e4482ff18cf6d68db71c86
|
99341
|
+
RO2S: Access token 0d1ea15aaaedce23758e7b78b66ed02c004b014a9ce00fb2364c28083cb4debe granted to client UberClient, identity Batman
|
99342
|
+
RO2S: Authorized Batman
|
99343
|
+
|
99344
|
+
|
99345
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99346
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99347
|
+
RO2S: Client UberClient requested code with scope read write
|
99348
|
+
|
99349
|
+
|
99350
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99351
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000147"}
|
99352
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000147]
|
99353
|
+
|
99354
|
+
|
99355
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99356
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000147"}
|
99357
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99358
|
+
RO2S: Client 4cf56c5c3321e87e92000146 granted access code 902197acf48cd504346b11decb1790d3b5699864e81c23efd481f1a17cfd3264
|
99359
|
+
RO2S: Access token efa384d36c28b50176a04aec23af2bc91a76e5d479446ce5fa5c5db2481b2193 granted to client UberClient, identity Batman
|
99360
|
+
RO2S: Authorized Batman
|
99361
|
+
|
99362
|
+
|
99363
|
+
Processing ApiController#user (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99364
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/user]
|
99365
|
+
RO2S: Client UberClient requested code with scope read write
|
99366
|
+
|
99367
|
+
|
99368
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99369
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000149"}
|
99370
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000149]
|
99371
|
+
|
99372
|
+
|
99373
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99374
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000149"}
|
99375
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99376
|
+
RO2S: Client 4cf56c5c3321e87e92000148 granted access code b0f716405455802da6f3039863f640094029fc400b1d37f8fb2ca357d1d64be6
|
99377
|
+
RO2S: Access token c4727b34699d742272c5a628f90123ec0f66283b651a921828d826d9d4cf7557 granted to client UberClient, identity Batman
|
99378
|
+
|
99379
|
+
|
99380
|
+
Processing ApiController#user (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99381
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/user]
|
99382
|
+
RO2S: Client UberClient requested code with scope read write
|
99383
|
+
|
99384
|
+
|
99385
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99386
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200014b"}
|
99387
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e9200014b]
|
99388
|
+
|
99389
|
+
|
99390
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99391
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200014b"}
|
99392
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99393
|
+
RO2S: Client 4cf56c5c3321e87e9200014a granted access code 90722da7c028060485027796e1119f15195813b691ee694e0b7005e27b92278c
|
99394
|
+
RO2S: Access token 536f2148f37ff26187f33fea3f393a755214498fa48140bb2d428e5bd620e1d6 granted to client UberClient, identity Batman
|
99395
|
+
|
99396
|
+
|
99397
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99398
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99399
|
+
RO2S: Client UberClient requested code with scope read write
|
99400
|
+
|
99401
|
+
|
99402
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99403
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200014d"}
|
99404
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e9200014d]
|
99405
|
+
|
99406
|
+
|
99407
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99408
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200014d"}
|
99409
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99410
|
+
RO2S: Client 4cf56c5c3321e87e9200014c granted access code dafc5d01da74a9c8b67a34737756521527efc617ae27618b3bd7eefe93d7ec1e
|
99411
|
+
RO2S: Access token ace4cf26630518e6bcf559a3a93da2bcefe2834cb0782c16e98305af46bed790 granted to client UberClient, identity Batman
|
99412
|
+
|
99413
|
+
|
99414
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99415
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99416
|
+
RO2S: Client UberClient requested code with scope read write
|
99417
|
+
|
99418
|
+
|
99419
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99420
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200014f"}
|
99421
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e9200014f]
|
99422
|
+
|
99423
|
+
|
99424
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99425
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e9200014f"}
|
99426
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99427
|
+
RO2S: Client 4cf56c5c3321e87e9200014e granted access code 78169f889fcf100820248bdcb7ef407caca3dc0bab234105e60f034c2e5e51aa
|
99428
|
+
RO2S: Access token 9419f2d0df1cd7accc0e141ab372f8bcecaf875a1b4355d1f7cac4c42c3c7331 granted to client UberClient, identity Batman
|
99429
|
+
|
99430
|
+
|
99431
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99432
|
+
Completed in 0ms (View: 0 | 200 OK [http://wrong.org/public]
|
99433
|
+
RO2S: Client UberClient requested code with scope read write
|
99434
|
+
|
99435
|
+
|
99436
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99437
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000151"}
|
99438
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000151]
|
99439
|
+
|
99440
|
+
|
99441
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99442
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000151"}
|
99443
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99444
|
+
RO2S: Client 4cf56c5c3321e87e92000150 granted access code 4f28e79ba9ec774702d907995c0e2753b88279882ced58453e462ba8fdcffcc8
|
99445
|
+
RO2S: Access token 06b792505d3d0ebb3348ce6b5d19a3c65a912abfb1b88f3bf06064b666ba2999 granted to client UberClient, identity Batman
|
99446
|
+
|
99447
|
+
|
99448
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99449
|
+
Completed in 0ms (View: 0 | 200 OK [http://wrong.org/public]
|
99450
|
+
RO2S: Client UberClient requested code with scope read write
|
99451
|
+
|
99452
|
+
|
99453
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99454
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000153"}
|
99455
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000153]
|
99456
|
+
|
99457
|
+
|
99458
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99459
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000153"}
|
99460
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99461
|
+
RO2S: Client 4cf56c5c3321e87e92000152 granted access code 94a2ca5b37d40e79558a5ac9f2f20f495304d013eb79deafc4ca6d0799e542ff
|
99462
|
+
RO2S: Access token 00faeb8a07b9aecbc59dd799b6cddc7d8d41c970d02274e24499ccc22e3d0ede granted to client UberClient, identity Batman
|
99463
|
+
RO2S: Authorized Batman
|
99464
|
+
|
99465
|
+
|
99466
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99467
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
99468
|
+
RO2S: Client UberClient requested code with scope read write
|
99469
|
+
|
99470
|
+
|
99471
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99472
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000155"}
|
99473
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000155]
|
99474
|
+
|
99475
|
+
|
99476
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99477
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000155"}
|
99478
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99479
|
+
RO2S: Client 4cf56c5c3321e87e92000154 granted access code 0c8cc5979bb529b0ff3a9a73af797d068116c6a0474b3e211b15e0933dc84c73
|
99480
|
+
RO2S: Access token 10278bf0c7533a15e819cbd5b2d3f749ee234cec1ee57d565e1819c54ef39d19 granted to client UberClient, identity Batman
|
99481
|
+
RO2S: Authorized Batman
|
99482
|
+
|
99483
|
+
|
99484
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99485
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
99486
|
+
RO2S: Client UberClient requested code with scope read write
|
99487
|
+
|
99488
|
+
|
99489
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99490
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000157"}
|
99491
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000157]
|
99492
|
+
|
99493
|
+
|
99494
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99495
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000157"}
|
99496
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99497
|
+
RO2S: Client 4cf56c5c3321e87e92000156 granted access code 8a05af87dd3c182acb760cbff9ac1e32580b7473032f16994f9d20936f8107c5
|
99498
|
+
RO2S: Access token 48c4c3449700ad21329527f7406f66d23307b682472cfc6e8ff8b2c8ef4b7c88 granted to client UberClient, identity Batman
|
99499
|
+
|
99500
|
+
|
99501
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99502
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99503
|
+
RO2S: Client UberClient requested code with scope read write
|
99504
|
+
|
99505
|
+
|
99506
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99507
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000159"}
|
99508
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5c3321e87e92000159]
|
99509
|
+
|
99510
|
+
|
99511
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:56) [POST]
|
99512
|
+
Parameters: {"authorization"=>"4cf56c5c3321e87e92000159"}
|
99513
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99514
|
+
RO2S: Client 4cf56c5c3321e87e92000158 granted access code fc10ba5be41fd743b280d0d130fa340f8d4a261ab879bd9eb8a0d99384d53601
|
99515
|
+
RO2S: Access token d00ed09a0437065886be0b8d05239ca395b7646c7cd2cf1639b4c75dc5a0c922 granted to client UberClient, identity Batman
|
99516
|
+
|
99517
|
+
|
99518
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-30 13:27:56) [GET]
|
99519
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
99520
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99521
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99522
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99523
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99524
|
+
RO2S: Client UberClient requested token with scope read write
|
99525
|
+
|
99526
|
+
|
99527
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99528
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000187"}
|
99529
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e92000187]
|
99530
|
+
|
99531
|
+
|
99532
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99533
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000187"}
|
99534
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99535
|
+
RO2S: Client 4cf56c5d3321e87e92000186 denied authorization
|
99536
|
+
RO2S: Client UberClient requested token with scope read write
|
99537
|
+
|
99538
|
+
|
99539
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99540
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000189"}
|
99541
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e92000189]
|
99542
|
+
|
99543
|
+
|
99544
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99545
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000189"}
|
99546
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99547
|
+
RO2S: Client 4cf56c5d3321e87e92000188 denied authorization
|
99548
|
+
RO2S: Client UberClient requested token with scope read write
|
99549
|
+
|
99550
|
+
|
99551
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99552
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200018b"}
|
99553
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e9200018b]
|
99554
|
+
|
99555
|
+
|
99556
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99557
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200018b"}
|
99558
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99559
|
+
RO2S: Client 4cf56c5d3321e87e9200018a denied authorization
|
99560
|
+
RO2S: Client UberClient requested token with scope read write
|
99561
|
+
|
99562
|
+
|
99563
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99564
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200018d"}
|
99565
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e9200018d]
|
99566
|
+
|
99567
|
+
|
99568
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99569
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200018d"}
|
99570
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99571
|
+
RO2S: Client 4cf56c5d3321e87e9200018c denied authorization
|
99572
|
+
RO2S: Client UberClient requested token with scope read write
|
99573
|
+
|
99574
|
+
|
99575
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99576
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200018f"}
|
99577
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e9200018f]
|
99578
|
+
|
99579
|
+
|
99580
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99581
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200018f"}
|
99582
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99583
|
+
RO2S: Client 4cf56c5d3321e87e9200018e denied authorization
|
99584
|
+
RO2S: Client UberClient requested token with scope read write
|
99585
|
+
|
99586
|
+
|
99587
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99588
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000191"}
|
99589
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e92000191]
|
99590
|
+
|
99591
|
+
|
99592
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99593
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000191"}
|
99594
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99595
|
+
RO2S: Client 4cf56c5d3321e87e92000190 granted access token ae8b5bd321bb655812828abc5a94ed8014c8533f51ce867801fbc4e21fe16cf7
|
99596
|
+
RO2S: Client UberClient requested token with scope read write
|
99597
|
+
|
99598
|
+
|
99599
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99600
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000193"}
|
99601
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e92000193]
|
99602
|
+
|
99603
|
+
|
99604
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99605
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000193"}
|
99606
|
+
Completed in 1ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
99607
|
+
RO2S: Client 4cf56c5d3321e87e92000192 granted access token 5bbbfc38bd990bfa34094ee11e1869ca074f4697592701b4f77f6082a043d42d
|
99608
|
+
RO2S: Client UberClient requested token with scope read write
|
99609
|
+
|
99610
|
+
|
99611
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99612
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000195"}
|
99613
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e92000195]
|
99614
|
+
|
99615
|
+
|
99616
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99617
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000195"}
|
99618
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99619
|
+
RO2S: Client 4cf56c5d3321e87e92000194 granted access token 818e86f37054520fc900d37c6f9c7dcebf92b2eb9cc325e5545fc7356ba5b27f
|
99620
|
+
RO2S: Client UberClient requested token with scope read write
|
99621
|
+
|
99622
|
+
|
99623
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99624
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000197"}
|
99625
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e92000197]
|
99626
|
+
|
99627
|
+
|
99628
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99629
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000197"}
|
99630
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99631
|
+
RO2S: Client 4cf56c5d3321e87e92000196 granted access token 5adb74c20b7028ebe626fa36d57cfb3ae577453de25bb8f43a315c41b737ac6f
|
99632
|
+
RO2S: Client UberClient requested token with scope read write
|
99633
|
+
|
99634
|
+
|
99635
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99636
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000199"}
|
99637
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e92000199]
|
99638
|
+
|
99639
|
+
|
99640
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99641
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e92000199"}
|
99642
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99643
|
+
RO2S: Client 4cf56c5d3321e87e92000198 granted access token bb1a4c8c9bc5c0f9b01ba48d61090f9addefd29c02f34fccbeddcb16fc6d69d4
|
99644
|
+
RO2S: Client UberClient requested token with scope read write
|
99645
|
+
|
99646
|
+
|
99647
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99648
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200019b"}
|
99649
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e9200019b]
|
99650
|
+
RO2S: Client UberClient requested token with scope read write
|
99651
|
+
|
99652
|
+
|
99653
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99654
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200019d"}
|
99655
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e9200019d]
|
99656
|
+
RO2S: Client UberClient requested code with scope read write
|
99657
|
+
|
99658
|
+
|
99659
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99660
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200019f"}
|
99661
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e9200019f]
|
99662
|
+
|
99663
|
+
|
99664
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99665
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e9200019f"}
|
99666
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99667
|
+
RO2S: Client 4cf56c5d3321e87e9200019e denied authorization
|
99668
|
+
RO2S: Client UberClient requested code with scope read write
|
99669
|
+
|
99670
|
+
|
99671
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99672
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a1"}
|
99673
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001a1]
|
99674
|
+
|
99675
|
+
|
99676
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99677
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a1"}
|
99678
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99679
|
+
RO2S: Client 4cf56c5d3321e87e920001a0 denied authorization
|
99680
|
+
RO2S: Client UberClient requested code with scope read write
|
99681
|
+
|
99682
|
+
|
99683
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99684
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a3"}
|
99685
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001a3]
|
99686
|
+
|
99687
|
+
|
99688
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99689
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a3"}
|
99690
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99691
|
+
RO2S: Client 4cf56c5d3321e87e920001a2 denied authorization
|
99692
|
+
RO2S: Client UberClient requested code with scope read write
|
99693
|
+
|
99694
|
+
|
99695
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99696
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a5"}
|
99697
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001a5]
|
99698
|
+
|
99699
|
+
|
99700
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99701
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a5"}
|
99702
|
+
Completed in 70ms (View: 69 | 403 Forbidden [http://example.org/oauth/deny]
|
99703
|
+
RO2S: Client 4cf56c5d3321e87e920001a4 denied authorization
|
99704
|
+
RO2S: Client UberClient requested code with scope read write
|
99705
|
+
|
99706
|
+
|
99707
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99708
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a7"}
|
99709
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001a7]
|
99710
|
+
|
99711
|
+
|
99712
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99713
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a7"}
|
99714
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
99715
|
+
RO2S: Client 4cf56c5d3321e87e920001a6 denied authorization
|
99716
|
+
RO2S: Client UberClient requested code with scope read write
|
99717
|
+
|
99718
|
+
|
99719
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99720
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a9"}
|
99721
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001a9]
|
99722
|
+
|
99723
|
+
|
99724
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99725
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001a9"}
|
99726
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99727
|
+
RO2S: Client 4cf56c5d3321e87e920001a8 granted access code 284f6afe7d4c047fe67e7c0f4b08d9eee19c50bb85485e3183d6d679a1a9309e
|
99728
|
+
RO2S: Client UberClient requested code with scope read write
|
99729
|
+
|
99730
|
+
|
99731
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99732
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001ab"}
|
99733
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001ab]
|
99734
|
+
|
99735
|
+
|
99736
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99737
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001ab"}
|
99738
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99739
|
+
RO2S: Client 4cf56c5d3321e87e920001aa granted access code 5104afa513ce1ac2003fa93d54550b24f6725bac9cb4274417aae15082972f09
|
99740
|
+
RO2S: Client UberClient requested code with scope read write
|
99741
|
+
|
99742
|
+
|
99743
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99744
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001ad"}
|
99745
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001ad]
|
99746
|
+
|
99747
|
+
|
99748
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99749
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001ad"}
|
99750
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99751
|
+
RO2S: Client 4cf56c5d3321e87e920001ac granted access code 5b56d2953a0dc86191d679f86b3c2c0c0f6404c9b0688b16c41f8bb1cb9d1dcf
|
99752
|
+
RO2S: Client UberClient requested code with scope read write
|
99753
|
+
|
99754
|
+
|
99755
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99756
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001af"}
|
99757
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001af]
|
99758
|
+
|
99759
|
+
|
99760
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:57) [POST]
|
99761
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001af"}
|
99762
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99763
|
+
RO2S: Client 4cf56c5d3321e87e920001ae granted access code 28f4b23a38408dadc4f167ca86167e13a727316dfe9e475817157bc7795cee5d
|
99764
|
+
RO2S: Client UberClient requested code with scope read write
|
99765
|
+
|
99766
|
+
|
99767
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:57) [GET]
|
99768
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001b1"}
|
99769
|
+
Completed in 5ms (View: 1 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5d3321e87e920001b1]
|
99770
|
+
|
99771
|
+
|
99772
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-30 13:27:58) [POST]
|
99773
|
+
Parameters: {"authorization"=>"4cf56c5d3321e87e920001b1"}
|
99774
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
99775
|
+
RO2S: Client 4cf56c5d3321e87e920001b0 granted access code be8a6dfe89a8b8751fbf44350f054942648a5af147d96cfe7ad719c147ad2c45
|
99776
|
+
RO2S: Client UberClient requested code with scope read write
|
99777
|
+
|
99778
|
+
|
99779
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99780
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001b3"}
|
99781
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001b3]
|
99782
|
+
RO2S: Client UberClient requested code with scope read write
|
99783
|
+
|
99784
|
+
|
99785
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99786
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001b5"}
|
99787
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001b5]
|
99788
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99789
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99790
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99791
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99792
|
+
RO2S: Authorization request with invalid redirect_uri: http:not-valid Redirect URL looks fishy to me
|
99793
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
99794
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
99795
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
99796
|
+
RO2S: Authorization request error redirect_uri_mismatch: Must use the same redirect URI you registered with us.
|
99797
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99798
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99799
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99800
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99801
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99802
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99803
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99804
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99805
|
+
RO2S: Authorization request with invalid redirect_uri: Redirect URL looks fishy to me
|
99806
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99807
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99808
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99809
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99810
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99811
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99812
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99813
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99814
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99815
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99816
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99817
|
+
RO2S: Authorization request error unsupported_response_type: The requested response type is not supported.
|
99818
|
+
RO2S: Client UberClient requested code with scope read write
|
99819
|
+
|
99820
|
+
|
99821
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99822
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001d5"}
|
99823
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001d5]
|
99824
|
+
RO2S: Client UberClient requested code with scope read write
|
99825
|
+
|
99826
|
+
|
99827
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99828
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001d7"}
|
99829
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001d7]
|
99830
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
99831
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
99832
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
99833
|
+
RO2S: Authorization request error invalid_scope: The requested scope is not supported.
|
99834
|
+
RO2S: Client UberClient requested code with scope read write
|
99835
|
+
|
99836
|
+
|
99837
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99838
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001dd"}
|
99839
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001dd]
|
99840
|
+
RO2S: Client UberClient requested code with scope read write
|
99841
|
+
|
99842
|
+
|
99843
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99844
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001dd"}
|
99845
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001dd]
|
99846
|
+
RO2S: Client UberClient requested code with scope read write
|
99847
|
+
|
99848
|
+
|
99849
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99850
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001df"}
|
99851
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001df]
|
99852
|
+
RO2S: Client UberClient requested code with scope read write
|
99853
|
+
|
99854
|
+
|
99855
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99856
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001df"}
|
99857
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001df]
|
99858
|
+
RO2S: Client UberClient requested code with scope read write
|
99859
|
+
|
99860
|
+
|
99861
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99862
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001e1"}
|
99863
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001e1]
|
99864
|
+
RO2S: Invalid authorization request
|
99865
|
+
RO2S: Client UberClient requested code with scope read write
|
99866
|
+
|
99867
|
+
|
99868
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-30 13:27:58) [GET]
|
99869
|
+
Parameters: {"authorization"=>"4cf56c5e3321e87e920001e3"}
|
99870
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cf56c5e3321e87e920001e3]
|
99871
|
+
RO2S: Invalid authorization request #<Rack::OAuth2::Server::AuthRequest:0x10374c3c8>
|
99872
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99873
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99874
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99875
|
+
RO2S: Authorization request error invalid_client: Client ID and client secret do not match.
|
99876
|
+
RO2S: Access token 169b15d41df558d02d7b67e1be183563d1521c850a4d5ad0ab8acf628d3786f9 granted to client UberClient, identity Batman
|
99877
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
99878
|
+
RO2S: Access token 5743d65f89c0f6897733c649842c01c22f813d7deec1415f854f446b1e49a932 granted to client UberClient, identity Batman
|
99879
|
+
RO2S: Access token 8b6a226b2ac7d57962ef03416a093dd8a1c7390d015163926fc20d2101cc17da granted to client UberClient, identity Batman
|
99880
|
+
RO2S: Access token 6a7770493ac3a4444996665dc6a063445d66d5c46d57943cc7b0925a27a31ea5 granted to client UberClient, identity Batman
|
99881
|
+
RO2S: Access token request error invalid_grant: This access grant expired
|
99882
|
+
RO2S: Access token 59f5ad799837f41a70764d7bdcae82b8281c3d499753cca0909adeedf1f95346 granted to client UberClient, identity Batman
|
99883
|
+
RO2S: Access token a8d28a35e96442f1289f24cf8a4a1ecd0605a9a0e57cbc572e9b6afc8236786b granted to client UberClient, identity Batman
|
99884
|
+
RO2S: Access token d6e5e3763de100b53c49e97622d48186b671e1972c4b271a5c2426b5ec517b24 granted to client UberClient, identity Batman
|
99885
|
+
RO2S: Access token b571a9895bd411ee3131edf2328887d99c7e751e02d7c5cea20bb4213357921b granted to client UberClient, identity Batman
|
99886
|
+
RO2S: Access token 82ce05531b8943b86448c57783cba1af25e3ba0a334ae9e25e9e50dc882240d4 granted to client UberClient, identity Batman
|
99887
|
+
RO2S: Access token dc15cc9ab0f113b1901550c9838a58dc8c3dc69672fe7bcece557cd5568bbb21 granted to client UberClient, identity Batman
|
99888
|
+
RO2S: Access token 709e05909676ceb62c7dd48f17b7380e7bf7362819700d352be503505ffcfdd5 granted to client UberClient, identity Batman
|