rack-oauth2-server 1.4.4 → 1.4.5
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 +7 -0
- data/VERSION +1 -1
- data/lib/rack/oauth2/admin/css/screen.css +36 -19
- data/lib/rack/oauth2/admin/js/application.js +8 -9
- data/lib/rack/oauth2/admin/views/client.tmpl +9 -6
- data/lib/rack/oauth2/admin/views/index.html +1 -0
- data/test/rails/log/test.log +2618 -0
- metadata +5 -5
data/CHANGELOG
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
2010-11-11 version 1.4.5
|
2
|
+
|
3
|
+
Cosmetic changes to UI. Added throbber and error messages when AJAX requests go
|
4
|
+
foul. Header on the left, sign-out on the right, as most people expect it.
|
5
|
+
Client name is no longer a link to the site, site link shown separately.
|
6
|
+
|
7
|
+
|
1
8
|
2010-11-10 version 1.4.4
|
2
9
|
|
3
10
|
Added a practice server. You can use it to test your OAuth 2.0 client library.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.
|
1
|
+
1.4.5
|
@@ -45,21 +45,21 @@ button {
|
|
45
45
|
line-height: 1.3em;
|
46
46
|
vertical-align: bottom;
|
47
47
|
padding: 2px 8px;
|
48
|
-
|
48
|
+
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(226,226,226,0.0)), to(rgba(226,226,226,1.0)));
|
49
49
|
-webkit-border-radius: 4px; -moz-border-radius: 4px;
|
50
|
-
|
51
|
-
|
50
|
+
-moz-box-shadow: 0 0 4px rgba(0,0,0,0.0);
|
51
|
+
-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.0);
|
52
52
|
}
|
53
53
|
button:hover, button:focus {
|
54
|
-
|
54
|
+
text-shadow: 0 -1px 1px rgba(255,255,255,0.25);
|
55
55
|
border: 1px solid #0073ea;
|
56
56
|
background: #0073ea 50% 50% repeat-x;
|
57
57
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0, 115, 234, 0.5)), to(rgba(0,115,234, 1.0)));
|
58
58
|
color: #fff;
|
59
59
|
text-decoration: none;
|
60
60
|
cursor: pointer;
|
61
|
-
|
62
|
-
|
61
|
+
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.5);
|
62
|
+
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
|
63
63
|
}
|
64
64
|
button:active { background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0, 115, 234, 1.0)), to(rgba(0,115,234, 0.5))); position: relative; top: 1px }
|
65
65
|
|
@@ -80,20 +80,21 @@ button:active { background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0
|
|
80
80
|
|
81
81
|
#header {
|
82
82
|
margin: 0;
|
83
|
-
padding: 2em;
|
84
|
-
|
85
|
-
background:
|
86
|
-
|
83
|
+
padding: 1em 2em 3em 2em;
|
84
|
+
border-bottom: 2px solid #CCC;
|
85
|
+
background: #6595A4;
|
86
|
+
color: #fff;
|
87
87
|
}
|
88
88
|
#header .title {
|
89
89
|
font-size: 18pt;
|
90
90
|
font-weight: bold;
|
91
91
|
display: block;
|
92
|
-
text-align: right;
|
93
92
|
line-height: 32px;
|
93
|
+
float: left;
|
94
94
|
}
|
95
95
|
#header .title a {
|
96
|
-
color: #
|
96
|
+
color: #fff;
|
97
|
+
text-shadow: white 0px 0px 1px;
|
97
98
|
text-decoration: none;
|
98
99
|
}
|
99
100
|
#header .title img {
|
@@ -102,22 +103,22 @@ button:active { background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0
|
|
102
103
|
vertical-align: bottom;
|
103
104
|
}
|
104
105
|
#header .signout {
|
106
|
+
color: #C8E9F3;
|
105
107
|
float: right;
|
106
108
|
font-size: 11pt;
|
109
|
+
line-height: 32px;
|
107
110
|
}
|
108
111
|
|
109
112
|
#main {
|
110
113
|
margin: 0;
|
111
|
-
padding:
|
114
|
+
padding: 2em 2em 4em 2em;
|
112
115
|
background: #fff;
|
113
116
|
border: 1px solid #fff;
|
114
117
|
}
|
115
118
|
#footer {
|
116
119
|
background: #eee;
|
117
|
-
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
|
118
|
-
background: -moz-linear-gradient(top, #fff, #eee);
|
119
120
|
color: #666;
|
120
|
-
border-top: 1px solid
|
121
|
+
border-top: 1px solid #ccc;
|
121
122
|
font-size: 90%;
|
122
123
|
padding: 0 2em 2em 2em;
|
123
124
|
}
|
@@ -234,8 +235,10 @@ table.tokens td.scope {
|
|
234
235
|
float: left;
|
235
236
|
}
|
236
237
|
.client .details .name {
|
237
|
-
|
238
|
+
margin: 0;
|
239
|
+
font-size: 16pt;
|
238
240
|
font-weight: bold;
|
241
|
+
float: left;
|
239
242
|
}
|
240
243
|
.client .details img {
|
241
244
|
border: none;
|
@@ -243,8 +246,13 @@ table.tokens td.scope {
|
|
243
246
|
height: 24px;
|
244
247
|
vertical-align: bottom;
|
245
248
|
}
|
246
|
-
.client .details
|
247
|
-
|
249
|
+
.client .details .actions {
|
250
|
+
float: left;
|
251
|
+
line-height: 20pt;
|
252
|
+
margin-left: 1em;
|
253
|
+
}
|
254
|
+
.client .details .actions a {
|
255
|
+
margin: 0 0 0 0.3em;
|
248
256
|
}
|
249
257
|
.client .details .meta {
|
250
258
|
color: #888;
|
@@ -274,6 +282,15 @@ table.tokens td.scope {
|
|
274
282
|
color: red;
|
275
283
|
}
|
276
284
|
|
285
|
+
#throbber {
|
286
|
+
display: none;
|
287
|
+
position: absolute;
|
288
|
+
top: 6em;
|
289
|
+
right: 2em;
|
290
|
+
width: 48px;
|
291
|
+
height: 48px;
|
292
|
+
content: "";
|
293
|
+
}
|
277
294
|
.loading {
|
278
295
|
background: url("../images/loading.gif") no-repeat 50% 50%;
|
279
296
|
}
|
@@ -5,10 +5,13 @@ Sammy("#main", function(app) {
|
|
5
5
|
this.setTitle("OAuth Console - ");
|
6
6
|
|
7
7
|
// Use OAuth access token in all API requests.
|
8
|
-
$(document).ajaxSend(function(
|
8
|
+
$(document).ajaxSend(function(evt, xhr) {
|
9
9
|
if (app.session("oauth.token"))
|
10
10
|
xhr.setRequestHeader("Authorization", "OAuth " + app.session("oauth.token"));
|
11
11
|
});
|
12
|
+
$(document).ajaxError(function(evt, xhr) { app.trigger("notice", xhr.responseText); });
|
13
|
+
$(document).ajaxStart(function(evt) { $("#throbber").show(); });
|
14
|
+
$(document).ajaxStop(function(evt) { $("#throbber").hide(); });
|
12
15
|
// For all request (except callback), if we don't have an OAuth access token,
|
13
16
|
// ask for one by requesting authorization.
|
14
17
|
this.before({ except: { path: /^#\w+=.+/ } }, function(context) {
|
@@ -69,10 +72,7 @@ Sammy("#main", function(app) {
|
|
69
72
|
context.redirect("#/client/" + context.params.id);
|
70
73
|
app.trigger("notice", "Saved your changes");
|
71
74
|
},
|
72
|
-
error: function(xhr) {
|
73
|
-
context.partial("admin/views/edit.tmpl", context.params);
|
74
|
-
app.trigger("notice", xhr.responseText);
|
75
|
-
}
|
75
|
+
error: function(xhr) { context.partial("admin/views/edit.tmpl", context.params); }
|
76
76
|
})
|
77
77
|
});
|
78
78
|
// Delete/revoke client
|
@@ -120,10 +120,7 @@ Sammy("#main", function(app) {
|
|
120
120
|
app.trigger("notice", "Added new client application " + client.displayName);
|
121
121
|
context.redirect("#/");
|
122
122
|
},
|
123
|
-
error: function(xhr) {
|
124
|
-
app.trigger("notice", xhr.responseText);
|
125
|
-
context.partial("admin/views/edit.tmpl", context.params);
|
126
|
-
}
|
123
|
+
error: function(xhr) { context.partial("admin/views/edit.tmpl", context.params); }
|
127
124
|
});
|
128
125
|
});
|
129
126
|
// Signout
|
@@ -146,6 +143,8 @@ Sammy("#main", function(app) {
|
|
146
143
|
// Error/notice at top of screen
|
147
144
|
var noticeTimeout;
|
148
145
|
app.bind("notice", function(evt, message) {
|
146
|
+
if (!message || message.trim() == "")
|
147
|
+
message = "Got an error, but don't know why";
|
149
148
|
$("#notice").text(message).fadeIn("fast");
|
150
149
|
if (noticeTimeout) {
|
151
150
|
cancelTimeout(noticeTimeout);
|
@@ -1,11 +1,14 @@
|
|
1
1
|
<div class="client">
|
2
2
|
<div class="details">
|
3
|
-
<
|
4
|
-
<
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
3
|
+
<h2 class="name">{{if imageUrl}}<img src="${imageUrl}">{{/if}} ${displayName}</h2>
|
4
|
+
<div class="actions">
|
5
|
+
<a href="#/client/${id}/edit" rel="edit">Edit</a>
|
6
|
+
{{if !revoked}}
|
7
|
+
<a href="#/client/${id}/revoke" data-method="post" data-confirm="There is no undo. Are you really really sure?" rel="revoke">Revoke</a>
|
8
|
+
{{/if}}
|
9
|
+
<a href="#/client/${id}" data-method="delete" data-confirm="There is no undo. Are you really really sure?" rel="delete">Delete</a>
|
10
|
+
</div>
|
11
|
+
<div class="meta">Site: <a href="${link}">${link}</a></div>
|
9
12
|
<div class="meta">
|
10
13
|
Created {{html $.shortdate(revoked)}}
|
11
14
|
{{if revoked}}Revoked {{html $.shortdate(revoked)}}{{/if}}
|
@@ -22,6 +22,7 @@
|
|
22
22
|
</div>
|
23
23
|
<a href="#/signout" class="signout">Sign out</a>
|
24
24
|
</div>
|
25
|
+
<div id="throbber" class="loading"></div>
|
25
26
|
<div id="main"></div>
|
26
27
|
<div id="footer">
|
27
28
|
<p>Powered by <a href="http://github.com/flowtown/rack-oauth2-server">Rack::OAuth2::Server</a></p>
|
data/test/rails/log/test.log
CHANGED
@@ -206707,3 +206707,2621 @@ Authorization request error: invalid_client Client ID and client secret do not m
|
|
206707
206707
|
Authorization request error: invalid_client Client ID and client secret do not match.
|
206708
206708
|
Authorization request error: invalid_client Client ID and client secret do not match.
|
206709
206709
|
Authorization request error: invalid_client Client ID and client secret do not match.
|
206710
|
+
Request 4cdca1293321e80f88000002: Client UberClient requested code with scope read write
|
206711
|
+
|
206712
|
+
|
206713
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206714
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"cedf826cf3dd2113bf7d22983bd7602ab6bbcba7dd637177d22525a6312f2037", "client_id"=>"4cdca1293321e80f88000001", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206715
|
+
Completed in 5ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=cedf826cf3dd2113bf7d22983bd7602ab6bbcba7dd637177d22525a6312f2037&client_id=4cdca1293321e80f88000001&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206716
|
+
|
206717
|
+
|
206718
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206719
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000002"}
|
206720
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206721
|
+
Request 4cdca1293321e80f88000002: Client 4cdca1293321e80f88000001 granted access code 32af130ad0a357395f21b5109c4d9c281b2068d4f28f49983b514efa6e7f5d41
|
206722
|
+
Request 4cdca1293321e80f88000004: Client UberClient requested code with scope read write
|
206723
|
+
|
206724
|
+
|
206725
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206726
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"fe75fecfc7f94ea993e5f048d3420d10ec9652d576862c983ecf586e95fbc61a", "client_id"=>"4cdca1293321e80f88000003", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206727
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=fe75fecfc7f94ea993e5f048d3420d10ec9652d576862c983ecf586e95fbc61a&client_id=4cdca1293321e80f88000003&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206728
|
+
|
206729
|
+
|
206730
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206731
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000004"}
|
206732
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206733
|
+
Request 4cdca1293321e80f88000004: Client 4cdca1293321e80f88000003 granted access code 71b313c47fcdad6044414147e2fe63755acfb1484d6eb966928a2ef98047da48
|
206734
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206735
|
+
Request 4cdca1293321e80f88000006: Client UberClient requested code with scope read write
|
206736
|
+
|
206737
|
+
|
206738
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206739
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"9be3b44890ded54b9a38cc516d6e3e99a911d0c1758db7b6f3d3467080b4cd74", "client_id"=>"4cdca1293321e80f88000005", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206740
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=9be3b44890ded54b9a38cc516d6e3e99a911d0c1758db7b6f3d3467080b4cd74&client_id=4cdca1293321e80f88000005&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206741
|
+
|
206742
|
+
|
206743
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206744
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000006"}
|
206745
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206746
|
+
Request 4cdca1293321e80f88000006: Client 4cdca1293321e80f88000005 granted access code c508728e937606f77f9aae852f07533865c8e611a3284a8164e7ee08895dd0f6
|
206747
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206748
|
+
Request 4cdca1293321e80f88000008: Client UberClient requested code with scope read write
|
206749
|
+
|
206750
|
+
|
206751
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206752
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"9f7530ed191be09e5288f586bd1407a6787e8c6cfa595bd3a75fe73b9bff7634", "client_id"=>"4cdca1293321e80f88000007", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206753
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=9f7530ed191be09e5288f586bd1407a6787e8c6cfa595bd3a75fe73b9bff7634&client_id=4cdca1293321e80f88000007&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206754
|
+
|
206755
|
+
|
206756
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206757
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000008"}
|
206758
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206759
|
+
Request 4cdca1293321e80f88000008: Client 4cdca1293321e80f88000007 granted access code 3e978ea8c34dfb233488ca05f57e0c04afa2ea26d9247fe0c60de07ec1a581e6
|
206760
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206761
|
+
Request 4cdca1293321e80f8800000a: Client UberClient requested code with scope read write
|
206762
|
+
|
206763
|
+
|
206764
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206765
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6c7315b45677ff9444ec3f7aea43c5faf2f1abd9b20fac2a135837e83ec04813", "client_id"=>"4cdca1293321e80f88000009", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206766
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6c7315b45677ff9444ec3f7aea43c5faf2f1abd9b20fac2a135837e83ec04813&client_id=4cdca1293321e80f88000009&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206767
|
+
|
206768
|
+
|
206769
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206770
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800000a"}
|
206771
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206772
|
+
Request 4cdca1293321e80f8800000a: Client 4cdca1293321e80f88000009 granted access code 00419381f1330a6382bcdf2dfe12201e055b7bec5062ecba7d216d308f961fb1
|
206773
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206774
|
+
Request 4cdca1293321e80f8800000c: Client UberClient requested code with scope read write
|
206775
|
+
|
206776
|
+
|
206777
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206778
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"38a4972ea675ce71ee5fd033f9a8c45201ac393c729727d30ccf88629841866d", "client_id"=>"4cdca1293321e80f8800000b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206779
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=38a4972ea675ce71ee5fd033f9a8c45201ac393c729727d30ccf88629841866d&client_id=4cdca1293321e80f8800000b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206780
|
+
|
206781
|
+
|
206782
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206783
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800000c"}
|
206784
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206785
|
+
Request 4cdca1293321e80f8800000c: Client 4cdca1293321e80f8800000b granted access code bc13ff536e176522ca9d1c2d4c003b738f7998082ec1ae3a9e321869b9464ac8
|
206786
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206787
|
+
Request 4cdca1293321e80f8800000e: Client UberClient requested code with scope read write
|
206788
|
+
|
206789
|
+
|
206790
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206791
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"362e048c5122a4bcccc9e4483971020932206983b96ee3b944ca1f7768c7e0ab", "client_id"=>"4cdca1293321e80f8800000d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206792
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=362e048c5122a4bcccc9e4483971020932206983b96ee3b944ca1f7768c7e0ab&client_id=4cdca1293321e80f8800000d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206793
|
+
|
206794
|
+
|
206795
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206796
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800000e"}
|
206797
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206798
|
+
Request 4cdca1293321e80f8800000e: Client 4cdca1293321e80f8800000d granted access code 25bb529c05d3dfc737a614f07f145936efe321f40b289d34e9a778982f466ed1
|
206799
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206800
|
+
Request 4cdca1293321e80f88000010: Client UberClient requested code with scope read write
|
206801
|
+
|
206802
|
+
|
206803
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206804
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f529bfa2db6b949fa800aae7747bcc7e2bb02786f9759fd05d74933f9e23b7c3", "client_id"=>"4cdca1293321e80f8800000f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206805
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f529bfa2db6b949fa800aae7747bcc7e2bb02786f9759fd05d74933f9e23b7c3&client_id=4cdca1293321e80f8800000f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206806
|
+
|
206807
|
+
|
206808
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206809
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000010"}
|
206810
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206811
|
+
Request 4cdca1293321e80f88000010: Client 4cdca1293321e80f8800000f granted access code 18d70f921c292de763bb0a704bf6c83848ae2a5f9b293c9d3281bbaef095d438
|
206812
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206813
|
+
Request 4cdca1293321e80f88000012: Client UberClient requested code with scope read write
|
206814
|
+
|
206815
|
+
|
206816
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206817
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d6cc1c8c375b68adf08c7dba260070057f78b252294ef2364d38db839e67c5e3", "client_id"=>"4cdca1293321e80f88000011", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206818
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d6cc1c8c375b68adf08c7dba260070057f78b252294ef2364d38db839e67c5e3&client_id=4cdca1293321e80f88000011&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206819
|
+
|
206820
|
+
|
206821
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206822
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000012"}
|
206823
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206824
|
+
Request 4cdca1293321e80f88000012: Client 4cdca1293321e80f88000011 granted access code b109111dd86e68dc6b72aa42978f3b047551d6ce6bf25ac65284c1d2d853ed7d
|
206825
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206826
|
+
Request 4cdca1293321e80f88000014: Client UberClient requested code with scope read write
|
206827
|
+
|
206828
|
+
|
206829
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206830
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6d43c7b5e29ea2c23c8d8f5b1cfce82b1affb3b786260e98fd74aaf30f87a9cc", "client_id"=>"4cdca1293321e80f88000013", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206831
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6d43c7b5e29ea2c23c8d8f5b1cfce82b1affb3b786260e98fd74aaf30f87a9cc&client_id=4cdca1293321e80f88000013&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206832
|
+
|
206833
|
+
|
206834
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206835
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000014"}
|
206836
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206837
|
+
Request 4cdca1293321e80f88000014: Client 4cdca1293321e80f88000013 granted access code b6bc56c84d56d057751fb23a2ab78d9c0d45807e7e98722d050b8ea81323fc31
|
206838
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206839
|
+
Request 4cdca1293321e80f88000016: Client UberClient requested code with scope read write
|
206840
|
+
|
206841
|
+
|
206842
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206843
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f3e97db77155e5a0ac3074b710a8ca1a42e7ea4ca30f64f1d959306f300472ca", "client_id"=>"4cdca1293321e80f88000015", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206844
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f3e97db77155e5a0ac3074b710a8ca1a42e7ea4ca30f64f1d959306f300472ca&client_id=4cdca1293321e80f88000015&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206845
|
+
|
206846
|
+
|
206847
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206848
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000016"}
|
206849
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206850
|
+
Request 4cdca1293321e80f88000016: Client 4cdca1293321e80f88000015 granted access code 4dc89b6c1895947adf28b2c7d28f21cd68d092ea2dacc3510bcc74b0c2478c83
|
206851
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206852
|
+
Request 4cdca1293321e80f88000018: Client UberClient requested code with scope read write
|
206853
|
+
|
206854
|
+
|
206855
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206856
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"e439e88533a0d74489ff0353fd3698ef1c578bec4bb23abd227c6756ee127f5e", "client_id"=>"4cdca1293321e80f88000017", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206857
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=e439e88533a0d74489ff0353fd3698ef1c578bec4bb23abd227c6756ee127f5e&client_id=4cdca1293321e80f88000017&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206858
|
+
|
206859
|
+
|
206860
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206861
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000018"}
|
206862
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206863
|
+
Request 4cdca1293321e80f88000018: Client 4cdca1293321e80f88000017 granted access code b9fbeab116ab44c7a2dfef0be44e5bbf47a69e606db93aec7dc517486d1b1695
|
206864
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206865
|
+
Request 4cdca1293321e80f8800001a: Client UberClient requested code with scope read write
|
206866
|
+
|
206867
|
+
|
206868
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206869
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"316324386ea053ab784af901353e4b8371485cdab4484b8a1571a9a05fb45d74", "client_id"=>"4cdca1293321e80f88000019", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206870
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=316324386ea053ab784af901353e4b8371485cdab4484b8a1571a9a05fb45d74&client_id=4cdca1293321e80f88000019&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206871
|
+
|
206872
|
+
|
206873
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206874
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800001a"}
|
206875
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206876
|
+
Request 4cdca1293321e80f8800001a: Client 4cdca1293321e80f88000019 granted access code 0e6219527dd314807d9b2ccb81aa0fbfb28b520aa4d9c758b357f8083194de09
|
206877
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206878
|
+
Request 4cdca1293321e80f8800001c: Client UberClient requested code with scope read write
|
206879
|
+
|
206880
|
+
|
206881
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206882
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d6636680805302fdf133931ae7862d27df359dcdba22a8f3b6d67b434d406367", "client_id"=>"4cdca1293321e80f8800001b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206883
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d6636680805302fdf133931ae7862d27df359dcdba22a8f3b6d67b434d406367&client_id=4cdca1293321e80f8800001b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206884
|
+
|
206885
|
+
|
206886
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206887
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800001c"}
|
206888
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206889
|
+
Request 4cdca1293321e80f8800001c: Client 4cdca1293321e80f8800001b granted access code 82a80455624b6255acac8f056c416148994f5697cfc379bc905ebb72a9d6d411
|
206890
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206891
|
+
Request 4cdca1293321e80f8800001e: Client UberClient requested code with scope read write
|
206892
|
+
|
206893
|
+
|
206894
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206895
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f77cb100ed15637c94359bf4c591b2c7933b0c1a3d7890cd0b2ae8bdd21c71f9", "client_id"=>"4cdca1293321e80f8800001d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206896
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f77cb100ed15637c94359bf4c591b2c7933b0c1a3d7890cd0b2ae8bdd21c71f9&client_id=4cdca1293321e80f8800001d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206897
|
+
|
206898
|
+
|
206899
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206900
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800001e"}
|
206901
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206902
|
+
Request 4cdca1293321e80f8800001e: Client 4cdca1293321e80f8800001d granted access code 4881408ecef164d24b140d4a2c27697730315d290b7a2c9ffd6bd639e9338ca9
|
206903
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206904
|
+
Request 4cdca1293321e80f88000020: Client UberClient requested code with scope read write
|
206905
|
+
|
206906
|
+
|
206907
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206908
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"eecde861cb54c303aff371d7ea13c34fb2ba5d8baa6ac92b24334b226945c539", "client_id"=>"4cdca1293321e80f8800001f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206909
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=eecde861cb54c303aff371d7ea13c34fb2ba5d8baa6ac92b24334b226945c539&client_id=4cdca1293321e80f8800001f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206910
|
+
|
206911
|
+
|
206912
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206913
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000020"}
|
206914
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206915
|
+
Request 4cdca1293321e80f88000020: Client 4cdca1293321e80f8800001f granted access code 6206b0cf750127d3b61df97aee8d60bf95f532e5f48956ab5fa8c2051e11a0dd
|
206916
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206917
|
+
Request 4cdca1293321e80f88000022: Client UberClient requested code with scope read write
|
206918
|
+
|
206919
|
+
|
206920
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206921
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"33014ce1e725578a27c32696067fb56314dc24bb8eb03c19604fd045f3e278dc", "client_id"=>"4cdca1293321e80f88000021", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206922
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=33014ce1e725578a27c32696067fb56314dc24bb8eb03c19604fd045f3e278dc&client_id=4cdca1293321e80f88000021&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206923
|
+
|
206924
|
+
|
206925
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206926
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000022"}
|
206927
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206928
|
+
Request 4cdca1293321e80f88000022: Client 4cdca1293321e80f88000021 granted access code 169e07608c84cbad261973690caf0a41f96961df052517aea0ecfdfaae6e6ab3
|
206929
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206930
|
+
Request 4cdca1293321e80f88000024: Client UberClient requested code with scope read write
|
206931
|
+
|
206932
|
+
|
206933
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206934
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"e2e722bd903618b5bb99c650c8a98e1a3991ce86f20682a2547f7c06bfb601c8", "client_id"=>"4cdca1293321e80f88000023", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206935
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=e2e722bd903618b5bb99c650c8a98e1a3991ce86f20682a2547f7c06bfb601c8&client_id=4cdca1293321e80f88000023&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206936
|
+
|
206937
|
+
|
206938
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206939
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000024"}
|
206940
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206941
|
+
Request 4cdca1293321e80f88000024: Client 4cdca1293321e80f88000023 granted access code e67e02fa92c869cce1e2c9eedb0fe52535f77f9898a9d88aec514474577a7fb3
|
206942
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206943
|
+
Request 4cdca1293321e80f88000026: Client UberClient requested code with scope read write
|
206944
|
+
|
206945
|
+
|
206946
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206947
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"35d14eed98238f1af455173cf07af24171d43a92cc5c16af99d8d0d4e2fb76e8", "client_id"=>"4cdca1293321e80f88000025", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206948
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=35d14eed98238f1af455173cf07af24171d43a92cc5c16af99d8d0d4e2fb76e8&client_id=4cdca1293321e80f88000025&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206949
|
+
|
206950
|
+
|
206951
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206952
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000026"}
|
206953
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206954
|
+
Request 4cdca1293321e80f88000026: Client 4cdca1293321e80f88000025 granted access code 463b3f24c03dcf037388be75970bbd109f2393b78befef5f4ff7c9bd47a37a79
|
206955
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
206956
|
+
Request 4cdca1293321e80f88000028: Client UberClient requested code with scope read write
|
206957
|
+
|
206958
|
+
|
206959
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206960
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"fe8e2c74db917f735283de440a10307f77882a0a52fa5eea89096e2997812701", "client_id"=>"4cdca1293321e80f88000027", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206961
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=fe8e2c74db917f735283de440a10307f77882a0a52fa5eea89096e2997812701&client_id=4cdca1293321e80f88000027&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206962
|
+
|
206963
|
+
|
206964
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206965
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000028"}
|
206966
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206967
|
+
Request 4cdca1293321e80f88000028: Client 4cdca1293321e80f88000027 granted access code 80ac5bf3e33575f5c6d60fb51fbd79f00350aa7e028b0a63592949feff1c9182
|
206968
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206969
|
+
Request 4cdca1293321e80f8800002a: Client UberClient requested code with scope read write
|
206970
|
+
|
206971
|
+
|
206972
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206973
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"9a789f0cd7323d5e914602c982aded2d35abecf85278aecd4dc2db81acf378ac", "client_id"=>"4cdca1293321e80f88000029", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206974
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=9a789f0cd7323d5e914602c982aded2d35abecf85278aecd4dc2db81acf378ac&client_id=4cdca1293321e80f88000029&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206975
|
+
|
206976
|
+
|
206977
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206978
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800002a"}
|
206979
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206980
|
+
Request 4cdca1293321e80f8800002a: Client 4cdca1293321e80f88000029 granted access code a620deb0de2c9fba5390f7f5da7aa997a511d64547add2ca22f9d04e68ed7737
|
206981
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206982
|
+
Request 4cdca1293321e80f8800002c: Client UberClient requested code with scope read write
|
206983
|
+
|
206984
|
+
|
206985
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206986
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"29782e7dd826b3391a09ada833076dd6fcdf3570a40f19d15ecee001f15dd3ef", "client_id"=>"4cdca1293321e80f8800002b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
206987
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=29782e7dd826b3391a09ada833076dd6fcdf3570a40f19d15ecee001f15dd3ef&client_id=4cdca1293321e80f8800002b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
206988
|
+
|
206989
|
+
|
206990
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
206991
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800002c"}
|
206992
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
206993
|
+
Request 4cdca1293321e80f8800002c: Client 4cdca1293321e80f8800002b granted access code b7e1cbf1842a8fd163792025fddaa176875dca44ab159a328dddd3ae15bb2ae8
|
206994
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
206995
|
+
Request 4cdca1293321e80f8800002e: Client UberClient requested code with scope read write
|
206996
|
+
|
206997
|
+
|
206998
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
206999
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b7dc015ffa13ea2c961af448d65c75e3ef8a5ad2038cc8e62e35a7a0b063d946", "client_id"=>"4cdca1293321e80f8800002d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207000
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b7dc015ffa13ea2c961af448d65c75e3ef8a5ad2038cc8e62e35a7a0b063d946&client_id=4cdca1293321e80f8800002d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207001
|
+
|
207002
|
+
|
207003
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
207004
|
+
Parameters: {"authorization"=>"4cdca1293321e80f8800002e"}
|
207005
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207006
|
+
Request 4cdca1293321e80f8800002e: Client 4cdca1293321e80f8800002d granted access code 9da25a236a37355eac3a3961233e5d2836c1f62aa58d158ec34eae251cec6afb
|
207007
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207008
|
+
Request 4cdca1293321e80f88000030: Client UberClient requested code with scope read write
|
207009
|
+
|
207010
|
+
|
207011
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
207012
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"7521e893204b7454f711be6753edb97081a557fea586c1fe03c8524218c5eb33", "client_id"=>"4cdca1293321e80f8800002f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207013
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=7521e893204b7454f711be6753edb97081a557fea586c1fe03c8524218c5eb33&client_id=4cdca1293321e80f8800002f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207014
|
+
|
207015
|
+
|
207016
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
207017
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000030"}
|
207018
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207019
|
+
Request 4cdca1293321e80f88000030: Client 4cdca1293321e80f8800002f granted access code cdee8e53114261e5c92e75dde5f7060c1080d3afafa75684f6fa63a2d2b686b1
|
207020
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207021
|
+
Request 4cdca1293321e80f88000032: Client UberClient requested code with scope read write
|
207022
|
+
|
207023
|
+
|
207024
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
207025
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"02cf4753e4ab9701e7bddbb43d1e3d3fdd278f9345729fd69cb6f374e3f966b5", "client_id"=>"4cdca1293321e80f88000031", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207026
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=02cf4753e4ab9701e7bddbb43d1e3d3fdd278f9345729fd69cb6f374e3f966b5&client_id=4cdca1293321e80f88000031&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207027
|
+
|
207028
|
+
|
207029
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
207030
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000032"}
|
207031
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207032
|
+
Request 4cdca1293321e80f88000032: Client 4cdca1293321e80f88000031 granted access code f0a4d047b43499c86501249fc1af8695ac3110efe59d91067e977b0b0703322d
|
207033
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207034
|
+
Request 4cdca1293321e80f88000034: Client UberClient requested code with scope read write
|
207035
|
+
|
207036
|
+
|
207037
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
207038
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"330a9f3a65f3218b4eb39edf5f9000616bd61d4fcbeaffea1e5ead4dc5280f42", "client_id"=>"4cdca1293321e80f88000033", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207039
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=330a9f3a65f3218b4eb39edf5f9000616bd61d4fcbeaffea1e5ead4dc5280f42&client_id=4cdca1293321e80f88000033&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207040
|
+
|
207041
|
+
|
207042
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
207043
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000034"}
|
207044
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207045
|
+
Request 4cdca1293321e80f88000034: Client 4cdca1293321e80f88000033 granted access code 8716593b6126e527f84ac29752c0b1e97772f884f7ce60e4c71ac3399144ba83
|
207046
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207047
|
+
Request 4cdca1293321e80f88000036: Client UberClient requested code with scope read write
|
207048
|
+
|
207049
|
+
|
207050
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:33) [GET]
|
207051
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"a0be111b787a131520f7a89b303b22f238a9888725f13238d4699fdd301ba9f5", "client_id"=>"4cdca1293321e80f88000035", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207052
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=a0be111b787a131520f7a89b303b22f238a9888725f13238d4699fdd301ba9f5&client_id=4cdca1293321e80f88000035&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207053
|
+
|
207054
|
+
|
207055
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:33) [POST]
|
207056
|
+
Parameters: {"authorization"=>"4cdca1293321e80f88000036"}
|
207057
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207058
|
+
Request 4cdca1293321e80f88000036: Client 4cdca1293321e80f88000035 granted access code 497759ca8b604a828f9fa0a2a1b26c4deb7fd72fa7e444a5333c753f459740ea
|
207059
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207060
|
+
Request 4cdca12a3321e80f88000038: Client UberClient requested code with scope read write
|
207061
|
+
|
207062
|
+
|
207063
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207064
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"54650a85f6c3b399269dfc102b1cf52b726cb3326bbb019d7dc0ecf9378137b3", "client_id"=>"4cdca12a3321e80f88000037", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207065
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=54650a85f6c3b399269dfc102b1cf52b726cb3326bbb019d7dc0ecf9378137b3&client_id=4cdca12a3321e80f88000037&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207066
|
+
|
207067
|
+
|
207068
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207069
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000038"}
|
207070
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207071
|
+
Request 4cdca12a3321e80f88000038: Client 4cdca12a3321e80f88000037 granted access code a09374e21056db5d0066af6116fd55d7c86bad1b73ddbc1ab77a9f1e910d3f21
|
207072
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207073
|
+
Request 4cdca12a3321e80f8800003a: Client UberClient requested code with scope read write
|
207074
|
+
|
207075
|
+
|
207076
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207077
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"7d0e7f09bd950a95f8eb6f0088da89745121baa6051c2bb7ca1f4128fe53e155", "client_id"=>"4cdca12a3321e80f88000039", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207078
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=7d0e7f09bd950a95f8eb6f0088da89745121baa6051c2bb7ca1f4128fe53e155&client_id=4cdca12a3321e80f88000039&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207079
|
+
|
207080
|
+
|
207081
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207082
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800003a"}
|
207083
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207084
|
+
Request 4cdca12a3321e80f8800003a: Client 4cdca12a3321e80f88000039 granted access code 762528c804a41290a5675813b4a5488b636c21a4c0cc617502907e1cb853d044
|
207085
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207086
|
+
Request 4cdca12a3321e80f8800003c: Client UberClient requested code with scope read write
|
207087
|
+
|
207088
|
+
|
207089
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207090
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"97cd6a69a82346eecc8878db75f69f8fc08e59db4c1acae6fb4be2900d979d7f", "client_id"=>"4cdca12a3321e80f8800003b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207091
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=97cd6a69a82346eecc8878db75f69f8fc08e59db4c1acae6fb4be2900d979d7f&client_id=4cdca12a3321e80f8800003b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207092
|
+
|
207093
|
+
|
207094
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207095
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800003c"}
|
207096
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207097
|
+
Request 4cdca12a3321e80f8800003c: Client 4cdca12a3321e80f8800003b granted access code bdb11951b525fb832fa95f3ad75fa2cc1a3156b4c39bf4ea4f5d5cbc4b13fb78
|
207098
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207099
|
+
Request 4cdca12a3321e80f8800003e: Client UberClient requested code with scope read write
|
207100
|
+
|
207101
|
+
|
207102
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207103
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d7bed9cea10ca8d64b0d94f8c2e59933ab8afb2458b6407bc0bcef7246220bdf", "client_id"=>"4cdca12a3321e80f8800003d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207104
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d7bed9cea10ca8d64b0d94f8c2e59933ab8afb2458b6407bc0bcef7246220bdf&client_id=4cdca12a3321e80f8800003d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207105
|
+
|
207106
|
+
|
207107
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207108
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800003e"}
|
207109
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207110
|
+
Request 4cdca12a3321e80f8800003e: Client 4cdca12a3321e80f8800003d granted access code 48a13717725bb0ecfd951f11fe286a66e0b33035210a76969ee86af3f924d2e2
|
207111
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207112
|
+
Request 4cdca12a3321e80f88000040: Client UberClient requested code with scope read write
|
207113
|
+
|
207114
|
+
|
207115
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207116
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ee2e9dbb658a7a211163e66ff01e68c5b1d4b6c2150f779d134af9dc7e3aed73", "client_id"=>"4cdca12a3321e80f8800003f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207117
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ee2e9dbb658a7a211163e66ff01e68c5b1d4b6c2150f779d134af9dc7e3aed73&client_id=4cdca12a3321e80f8800003f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207118
|
+
|
207119
|
+
|
207120
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207121
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000040"}
|
207122
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207123
|
+
Request 4cdca12a3321e80f88000040: Client 4cdca12a3321e80f8800003f granted access code 66720569735d14b0b5f751e8f2ccee9ce568e17d8c9300e1e1b9a899eeca3584
|
207124
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207125
|
+
Request 4cdca12a3321e80f88000042: Client UberClient requested code with scope read write
|
207126
|
+
|
207127
|
+
|
207128
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207129
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"52e0629fd7e5ad37a318b8682c337f7d622fa7fc1854d82dafffd3902b06c31d", "client_id"=>"4cdca12a3321e80f88000041", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207130
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=52e0629fd7e5ad37a318b8682c337f7d622fa7fc1854d82dafffd3902b06c31d&client_id=4cdca12a3321e80f88000041&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207131
|
+
|
207132
|
+
|
207133
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207134
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000042"}
|
207135
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207136
|
+
Request 4cdca12a3321e80f88000042: Client 4cdca12a3321e80f88000041 granted access code e10ca293a070b2930cf41c7e0d055a8f2f9d03042ed892e09de82fe705190b4c
|
207137
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207138
|
+
Request 4cdca12a3321e80f88000044: Client UberClient requested code with scope read write
|
207139
|
+
|
207140
|
+
|
207141
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207142
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"50283fc4d4131ea0a2a081077d804c6d43d30b7b099f1c85b40825bebc3c0e7c", "client_id"=>"4cdca12a3321e80f88000043", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207143
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=50283fc4d4131ea0a2a081077d804c6d43d30b7b099f1c85b40825bebc3c0e7c&client_id=4cdca12a3321e80f88000043&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207144
|
+
|
207145
|
+
|
207146
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207147
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000044"}
|
207148
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207149
|
+
Request 4cdca12a3321e80f88000044: Client 4cdca12a3321e80f88000043 granted access code 37f1c363ec02ab4b5514b235725a64dd82e71f9ccd8f8c86f6a3d867e63cbf7b
|
207150
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207151
|
+
Request 4cdca12a3321e80f88000046: Client UberClient requested code with scope read write
|
207152
|
+
|
207153
|
+
|
207154
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207155
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"a70c295be103a442de366b1cfcc248579caad0fac5e8baa731cf581fae0916f2", "client_id"=>"4cdca12a3321e80f88000045", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207156
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=a70c295be103a442de366b1cfcc248579caad0fac5e8baa731cf581fae0916f2&client_id=4cdca12a3321e80f88000045&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207157
|
+
|
207158
|
+
|
207159
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207160
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000046"}
|
207161
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207162
|
+
Request 4cdca12a3321e80f88000046: Client 4cdca12a3321e80f88000045 granted access code 8106cfc42e84253bbb2f015633bfa22e78cbb11be2e0b47dc8b3a308709808ca
|
207163
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207164
|
+
Request 4cdca12a3321e80f88000048: Client UberClient requested code with scope read write
|
207165
|
+
|
207166
|
+
|
207167
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207168
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5e77afa6007c86ffffa234ed1666747502f555c262b0561e867f0aa09988674b", "client_id"=>"4cdca12a3321e80f88000047", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207169
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5e77afa6007c86ffffa234ed1666747502f555c262b0561e867f0aa09988674b&client_id=4cdca12a3321e80f88000047&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207170
|
+
|
207171
|
+
|
207172
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207173
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000048"}
|
207174
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207175
|
+
Request 4cdca12a3321e80f88000048: Client 4cdca12a3321e80f88000047 granted access code 53c62582833b7a494f7707f7136ac8b14b3a706c0a16ddfa4da52ceb620e5c92
|
207176
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207177
|
+
Request 4cdca12a3321e80f8800004a: Client UberClient requested code with scope read write
|
207178
|
+
|
207179
|
+
|
207180
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207181
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d8be767c515554b1db34b5603210a9bf3b84825f5fa6468dd7196cb8b58b8a0d", "client_id"=>"4cdca12a3321e80f88000049", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207182
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d8be767c515554b1db34b5603210a9bf3b84825f5fa6468dd7196cb8b58b8a0d&client_id=4cdca12a3321e80f88000049&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207183
|
+
|
207184
|
+
|
207185
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207186
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800004a"}
|
207187
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207188
|
+
Request 4cdca12a3321e80f8800004a: Client 4cdca12a3321e80f88000049 granted access code a37fc3f9d4eaaa37ded35ccd4123cd9316176be0188c7e7a3e64072631623d4c
|
207189
|
+
Access token 1d77eb2b1a586dd0cd402ae53dda18e679f5ff6f3b6ff664800166dab51ead3d granted to client UberClient, identity foo bar
|
207190
|
+
Request 4cdca12a3321e80f8800004c: Client UberClient requested code with scope read write
|
207191
|
+
|
207192
|
+
|
207193
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207194
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6f6023f1173889bf2a225621802c01a7766fd035acfffc3e6dd83034d0ff4fed", "client_id"=>"4cdca12a3321e80f8800004b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207195
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6f6023f1173889bf2a225621802c01a7766fd035acfffc3e6dd83034d0ff4fed&client_id=4cdca12a3321e80f8800004b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207196
|
+
|
207197
|
+
|
207198
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207199
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800004c"}
|
207200
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207201
|
+
Request 4cdca12a3321e80f8800004c: Client 4cdca12a3321e80f8800004b granted access code d50786c2f051ac33834e5ee69e4012f07ed5733b86d37362481bb12e0910ddfa
|
207202
|
+
Access token 5fce572c0838837cb55287ccd760399e7d63ad9053b5b096d22151459ca4d4ff granted to client UberClient, identity foo bar
|
207203
|
+
Request 4cdca12a3321e80f8800004e: Client UberClient requested code with scope read write
|
207204
|
+
|
207205
|
+
|
207206
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207207
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"0b6945d29c00c2754f60551f80ea31bb7f6e1a610e45f4506350bf50967d80d9", "client_id"=>"4cdca12a3321e80f8800004d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207208
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=0b6945d29c00c2754f60551f80ea31bb7f6e1a610e45f4506350bf50967d80d9&client_id=4cdca12a3321e80f8800004d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207209
|
+
|
207210
|
+
|
207211
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207212
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800004e"}
|
207213
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207214
|
+
Request 4cdca12a3321e80f8800004e: Client 4cdca12a3321e80f8800004d granted access code 56292ac2ecd271d27cede7e136172912e35c125c403b3fc90dc2c7008b2df290
|
207215
|
+
Access token f5eeebf5ad01952aca0f6c92a9e99a1a591e82968f343c49c0571d65908722d7 granted to client UberClient, identity foo bar
|
207216
|
+
Request 4cdca12a3321e80f88000050: Client UberClient requested code with scope read write
|
207217
|
+
|
207218
|
+
|
207219
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207220
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"bff6ae21696c6bc6ad5a94f223ebc6fc0b519301cc570a772215aec2d9cff27e", "client_id"=>"4cdca12a3321e80f8800004f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207221
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=bff6ae21696c6bc6ad5a94f223ebc6fc0b519301cc570a772215aec2d9cff27e&client_id=4cdca12a3321e80f8800004f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207222
|
+
|
207223
|
+
|
207224
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207225
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000050"}
|
207226
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207227
|
+
Request 4cdca12a3321e80f88000050: Client 4cdca12a3321e80f8800004f granted access code 843c09c076b45ef1cfa88516080ccb91e7e65d83bf1e46c0f9845a47540b5dc0
|
207228
|
+
Access token 66270aecb9a544691bff28059b31a1f37bbdcec641f9cd156fd6b106a83560fc granted to client UberClient, identity foo bar
|
207229
|
+
Request 4cdca12a3321e80f88000052: Client UberClient requested code with scope read write
|
207230
|
+
|
207231
|
+
|
207232
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207233
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"e49211551be3112f8ebf3662b58726ec46529d8ab2e72ff1f58294784f65865d", "client_id"=>"4cdca12a3321e80f88000051", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207234
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=e49211551be3112f8ebf3662b58726ec46529d8ab2e72ff1f58294784f65865d&client_id=4cdca12a3321e80f88000051&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207235
|
+
|
207236
|
+
|
207237
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207238
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000052"}
|
207239
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207240
|
+
Request 4cdca12a3321e80f88000052: Client 4cdca12a3321e80f88000051 granted access code 1a7b08bf6b6138d09f27cce9dad5514af4c81a05c060a18cfdda0d918988aecd
|
207241
|
+
Access token be0a9bcaf2b8077321e8a2a665cd4245f3c751b4732a2bbf876c60f930e4ce13 granted to client UberClient, identity foo bar
|
207242
|
+
Request 4cdca12a3321e80f88000054: Client UberClient requested code with scope read write
|
207243
|
+
|
207244
|
+
|
207245
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207246
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d9b7a7f8328e86f2457595bf15f6833a34cdc53650da1bd7230ddc86085326bd", "client_id"=>"4cdca12a3321e80f88000053", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207247
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d9b7a7f8328e86f2457595bf15f6833a34cdc53650da1bd7230ddc86085326bd&client_id=4cdca12a3321e80f88000053&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207248
|
+
|
207249
|
+
|
207250
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207251
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000054"}
|
207252
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207253
|
+
Request 4cdca12a3321e80f88000054: Client 4cdca12a3321e80f88000053 granted access code 584c0353fbdc19498258284b1b389156ef872374c89205dd8f2a0611e809200b
|
207254
|
+
Access token 8f3c8f0aa60b2a83760fadc5a9a798ee2d928008e169f4107c8009e75b7b1fea granted to client UberClient, identity foo bar
|
207255
|
+
Request 4cdca12a3321e80f88000056: Client UberClient requested code with scope read write
|
207256
|
+
|
207257
|
+
|
207258
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207259
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"c9bcc0302452143b19e329a74344d04415900f2512150e5d0eef392e0314b8c7", "client_id"=>"4cdca12a3321e80f88000055", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207260
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=c9bcc0302452143b19e329a74344d04415900f2512150e5d0eef392e0314b8c7&client_id=4cdca12a3321e80f88000055&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207261
|
+
|
207262
|
+
|
207263
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207264
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000056"}
|
207265
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207266
|
+
Request 4cdca12a3321e80f88000056: Client 4cdca12a3321e80f88000055 granted access code 81f417661bb87d4906fd7542a39aa78570da6e3b1c2118da8fecad46ed1b88b4
|
207267
|
+
Access token 2b662150003bbde5c36136cbff2a741fb381d17a5a3d3dfbcfacec2a5f532da5 granted to client UberClient, identity Batman
|
207268
|
+
Request 4cdca12a3321e80f88000058: Client UberClient requested code with scope read write
|
207269
|
+
|
207270
|
+
|
207271
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207272
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"3f12b0a3ac3feeab1218e0a86917f874422b33c114884f1bb4508ca8767d2f50", "client_id"=>"4cdca12a3321e80f88000057", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207273
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=3f12b0a3ac3feeab1218e0a86917f874422b33c114884f1bb4508ca8767d2f50&client_id=4cdca12a3321e80f88000057&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207274
|
+
|
207275
|
+
|
207276
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207277
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000058"}
|
207278
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207279
|
+
Request 4cdca12a3321e80f88000058: Client 4cdca12a3321e80f88000057 granted access code 46a6c53ab6e5fa59c6ebdc297bc4b65864d2cf431e0d046cd92531b25f157f69
|
207280
|
+
Access token 1da8772674d529a49c070472a8eba58cf9243f4d2c7cc582a7f8a447ce0333f3 granted to client UberClient, identity Batman
|
207281
|
+
Request 4cdca12a3321e80f8800005a: Client UberClient requested code with scope read write
|
207282
|
+
|
207283
|
+
|
207284
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207285
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"204a837152b2f14334717f9681a92cc96e6ebe9877522d7d36f4df9586c96446", "client_id"=>"4cdca12a3321e80f88000059", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207286
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=204a837152b2f14334717f9681a92cc96e6ebe9877522d7d36f4df9586c96446&client_id=4cdca12a3321e80f88000059&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207287
|
+
|
207288
|
+
|
207289
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207290
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800005a"}
|
207291
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207292
|
+
Request 4cdca12a3321e80f8800005a: Client 4cdca12a3321e80f88000059 granted access code e56f83b911c1cae7a38d748c382e3bd828fbb18801c14111f94f5cbbafa06b5e
|
207293
|
+
Access token f87f98596463d626eed38e19379385c0a12a08f148c6a71c20af06ff363f24a3 granted to client UberClient, identity Batman
|
207294
|
+
Request 4cdca12a3321e80f8800005c: Client UberClient requested code with scope read write
|
207295
|
+
|
207296
|
+
|
207297
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207298
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f9066bdb1b33ba7a8db48efefd7937099bc0a8a2e97ba122a02aa7af3847ce7c", "client_id"=>"4cdca12a3321e80f8800005b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207299
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f9066bdb1b33ba7a8db48efefd7937099bc0a8a2e97ba122a02aa7af3847ce7c&client_id=4cdca12a3321e80f8800005b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207300
|
+
|
207301
|
+
|
207302
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207303
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800005c"}
|
207304
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207305
|
+
Request 4cdca12a3321e80f8800005c: Client 4cdca12a3321e80f8800005b granted access code b7024d96de0525dd1cce1089515933bdf6ce114057de7abca07e9489107c3653
|
207306
|
+
Access token c136584050479a18918b9b6769b57ed77dcb77f1be6fdffe0b6754c17398fc0f granted to client UberClient, identity Batman
|
207307
|
+
Request 4cdca12a3321e80f8800005e: Client UberClient requested code with scope read write
|
207308
|
+
|
207309
|
+
|
207310
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207311
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"c24c1e560b087494bd4d304e676f036bcc01ece10501f08670d0fdb7fd5fd2e2", "client_id"=>"4cdca12a3321e80f8800005d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207312
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=c24c1e560b087494bd4d304e676f036bcc01ece10501f08670d0fdb7fd5fd2e2&client_id=4cdca12a3321e80f8800005d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207313
|
+
|
207314
|
+
|
207315
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207316
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800005e"}
|
207317
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207318
|
+
Request 4cdca12a3321e80f8800005e: Client 4cdca12a3321e80f8800005d granted access code ff547734fdd0a56c29c606ae56c4311fe69c97e1287a63d2bc51aee044f66754
|
207319
|
+
Access token 828600dbaa587ca308715d6e8e08baa924538f23b93d8cac42674da6dba590d0 granted to client UberClient, identity Batman
|
207320
|
+
Request 4cdca12a3321e80f88000060: Client UberClient requested code with scope read write
|
207321
|
+
|
207322
|
+
|
207323
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207324
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b7c2f4fc24243045de00ad9a99c3ff606e4fbc2bce045a71ddafb7432fe8692a", "client_id"=>"4cdca12a3321e80f8800005f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207325
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b7c2f4fc24243045de00ad9a99c3ff606e4fbc2bce045a71ddafb7432fe8692a&client_id=4cdca12a3321e80f8800005f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207326
|
+
|
207327
|
+
|
207328
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207329
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000060"}
|
207330
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207331
|
+
Request 4cdca12a3321e80f88000060: Client 4cdca12a3321e80f8800005f granted access code d7d746ff561c8f91a7418c127c4e85099a4de0572f5c5b239e3a67bc06eb3aa0
|
207332
|
+
Access token 7e039f35e73c5c99dff410f15db1761344dd535d51189fea550e8a86fdbeb719 granted to client UberClient, identity Batman
|
207333
|
+
Request 4cdca12a3321e80f88000062: Client UberClient requested code with scope read write
|
207334
|
+
|
207335
|
+
|
207336
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207337
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f8829b4c7d0c4947a79ce32a8fee848c26b39854357dfab8f9be3ffba3cee0ff", "client_id"=>"4cdca12a3321e80f88000061", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207338
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f8829b4c7d0c4947a79ce32a8fee848c26b39854357dfab8f9be3ffba3cee0ff&client_id=4cdca12a3321e80f88000061&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207339
|
+
|
207340
|
+
|
207341
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207342
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000062"}
|
207343
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207344
|
+
Request 4cdca12a3321e80f88000062: Client 4cdca12a3321e80f88000061 granted access code 8c2b2b57ffa7511429d6ec47c63a2703cdf9db2d305615b01f8439be0098c4af
|
207345
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207346
|
+
Request 4cdca12a3321e80f88000064: Client UberClient requested code with scope read write
|
207347
|
+
|
207348
|
+
|
207349
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207350
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b797b4b4c5c6d7fdd98ad2bbdde896a379807b37f3bf90a8f05b8a68abd082b8", "client_id"=>"4cdca12a3321e80f88000063", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207351
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b797b4b4c5c6d7fdd98ad2bbdde896a379807b37f3bf90a8f05b8a68abd082b8&client_id=4cdca12a3321e80f88000063&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207352
|
+
|
207353
|
+
|
207354
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207355
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000064"}
|
207356
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207357
|
+
Request 4cdca12a3321e80f88000064: Client 4cdca12a3321e80f88000063 granted access code 13b91376cb59a13ae283981de889f8caff96b37af3e275becd6dfbf341ef28da
|
207358
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207359
|
+
Request 4cdca12a3321e80f88000066: Client UberClient requested code with scope read write
|
207360
|
+
|
207361
|
+
|
207362
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207363
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"41f55a3a3602c9fd9810d589ab1982545b847c6e0a09ff854dd46fd656be3ea0", "client_id"=>"4cdca12a3321e80f88000065", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207364
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=41f55a3a3602c9fd9810d589ab1982545b847c6e0a09ff854dd46fd656be3ea0&client_id=4cdca12a3321e80f88000065&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207365
|
+
|
207366
|
+
|
207367
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207368
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000066"}
|
207369
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207370
|
+
Request 4cdca12a3321e80f88000066: Client 4cdca12a3321e80f88000065 granted access code b6c1d0d4dcb3f609f6beab59151e90dbe5efaebee688fecd7b935612b4a7db48
|
207371
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207372
|
+
Request 4cdca12a3321e80f88000068: Client UberClient requested code with scope read write
|
207373
|
+
|
207374
|
+
|
207375
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207376
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"c1c33b3c21534c3629f18a37023c3ca0cce5af0e14ff207ba30801547c9f7573", "client_id"=>"4cdca12a3321e80f88000067", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207377
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=c1c33b3c21534c3629f18a37023c3ca0cce5af0e14ff207ba30801547c9f7573&client_id=4cdca12a3321e80f88000067&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207378
|
+
|
207379
|
+
|
207380
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207381
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000068"}
|
207382
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207383
|
+
Request 4cdca12a3321e80f88000068: Client 4cdca12a3321e80f88000067 granted access code 25cec7c5febde0c22274adf5e5c6f769332ca400243d7c159fbe605d266e89b5
|
207384
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207385
|
+
Request 4cdca12a3321e80f8800006a: Client UberClient requested code with scope read write
|
207386
|
+
|
207387
|
+
|
207388
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207389
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"46f4e99ca1a7daeb147e90df859152e1818c1c9ad37c56b9884dd0cdddb3842c", "client_id"=>"4cdca12a3321e80f88000069", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207390
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=46f4e99ca1a7daeb147e90df859152e1818c1c9ad37c56b9884dd0cdddb3842c&client_id=4cdca12a3321e80f88000069&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207391
|
+
|
207392
|
+
|
207393
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207394
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800006a"}
|
207395
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207396
|
+
Request 4cdca12a3321e80f8800006a: Client 4cdca12a3321e80f88000069 granted access code 9c7afa962dd33a033803785b52b91c0558365e43b94ad83a855f2242ed291947
|
207397
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207398
|
+
Request 4cdca12a3321e80f8800006c: Client UberClient requested code with scope read write
|
207399
|
+
|
207400
|
+
|
207401
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207402
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"065c2da725065d0d25a9ef507ebde596bbd5175a3b00506c6cb059a465d188f3", "client_id"=>"4cdca12a3321e80f8800006b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207403
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=065c2da725065d0d25a9ef507ebde596bbd5175a3b00506c6cb059a465d188f3&client_id=4cdca12a3321e80f8800006b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207404
|
+
|
207405
|
+
|
207406
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207407
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800006c"}
|
207408
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207409
|
+
Request 4cdca12a3321e80f8800006c: Client 4cdca12a3321e80f8800006b granted access code fc9e6c2a57df12bed93d4b0efd9424f7db5d4ac0300023b48b30d9b69003b5c6
|
207410
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207411
|
+
Request 4cdca12a3321e80f8800006e: Client UberClient requested code with scope read write
|
207412
|
+
|
207413
|
+
|
207414
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207415
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ef40d19f52502e0e8cf8af0448e99a9b19de156687c569ee046a6729b51532b8", "client_id"=>"4cdca12a3321e80f8800006d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207416
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ef40d19f52502e0e8cf8af0448e99a9b19de156687c569ee046a6729b51532b8&client_id=4cdca12a3321e80f8800006d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207417
|
+
|
207418
|
+
|
207419
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207420
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800006e"}
|
207421
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207422
|
+
Request 4cdca12a3321e80f8800006e: Client 4cdca12a3321e80f8800006d granted access code 641b0514bcf3df29a67109012399f192ddb51dfeacf02b9e56392317564ebfad
|
207423
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207424
|
+
Request 4cdca12a3321e80f88000070: Client UberClient requested code with scope read write
|
207425
|
+
|
207426
|
+
|
207427
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207428
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f2a2a1c14da8d9151de214e11057b5925278ff4d9bbe3739f8a19f5a768bdac1", "client_id"=>"4cdca12a3321e80f8800006f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207429
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f2a2a1c14da8d9151de214e11057b5925278ff4d9bbe3739f8a19f5a768bdac1&client_id=4cdca12a3321e80f8800006f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207430
|
+
|
207431
|
+
|
207432
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207433
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000070"}
|
207434
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207435
|
+
Request 4cdca12a3321e80f88000070: Client 4cdca12a3321e80f8800006f granted access code d52246ea6b3b2280d0aa001098e1490766b41c234500194cca7f139e18853765
|
207436
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207437
|
+
Request 4cdca12a3321e80f88000072: Client UberClient requested code with scope read write
|
207438
|
+
|
207439
|
+
|
207440
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207441
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b23b9ac02c8bffb7be11b18bc0b666552407f0896d27fe03d198a94ddc8d0b00", "client_id"=>"4cdca12a3321e80f88000071", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207442
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b23b9ac02c8bffb7be11b18bc0b666552407f0896d27fe03d198a94ddc8d0b00&client_id=4cdca12a3321e80f88000071&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207443
|
+
|
207444
|
+
|
207445
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207446
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000072"}
|
207447
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
207448
|
+
Request 4cdca12a3321e80f88000072: Client 4cdca12a3321e80f88000071 granted access code e9da069585a81804d6b419b4952880413fc9b4a64f1b0759df6842e9d9f6b0b0
|
207449
|
+
Access token request error: invalid_grant This access grant is no longer valid.
|
207450
|
+
Request 4cdca12a3321e80f88000074: Client UberClient requested code with scope read write
|
207451
|
+
|
207452
|
+
|
207453
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207454
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"e396742b35a10162319d0f9d2a9021d9629a672dda7f401ecaa466e958245d7b", "client_id"=>"4cdca12a3321e80f88000073", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207455
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=e396742b35a10162319d0f9d2a9021d9629a672dda7f401ecaa466e958245d7b&client_id=4cdca12a3321e80f88000073&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207456
|
+
|
207457
|
+
|
207458
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207459
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000074"}
|
207460
|
+
Completed in 4ms (View: 2 | 200 OK [http://example.org/oauth/grant]
|
207461
|
+
Request 4cdca12a3321e80f88000074: Client 4cdca12a3321e80f88000073 granted access code c215a8a6366e2bf9a7759e1eb154031a9fa65ac458964332b83301d9c458365d
|
207462
|
+
Access token request error: unsupported_grant_type This access grant type is not supported by this server.
|
207463
|
+
Request 4cdca12a3321e80f88000076: Client UberClient requested code with scope read write
|
207464
|
+
|
207465
|
+
|
207466
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207467
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"2d17e039f4f92b249f482fe3fff5128484017c7a7ca31903b2281ca82553c90e", "client_id"=>"4cdca12a3321e80f88000075", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207468
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=2d17e039f4f92b249f482fe3fff5128484017c7a7ca31903b2281ca82553c90e&client_id=4cdca12a3321e80f88000075&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207469
|
+
|
207470
|
+
|
207471
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207472
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000076"}
|
207473
|
+
Completed in 12ms (View: 10 | 200 OK [http://example.org/oauth/grant]
|
207474
|
+
Request 4cdca12a3321e80f88000076: Client 4cdca12a3321e80f88000075 granted access code c6a8a66c4faa0c817d168bead83b59e5178add4c1b220b03304e7d9f416150d0
|
207475
|
+
Access token request error: unsupported_grant_type This access grant type is not supported by this server.
|
207476
|
+
Request 4cdca12a3321e80f88000078: Client UberClient requested code with scope read write
|
207477
|
+
|
207478
|
+
|
207479
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207480
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"1a9222a171dfdc2edfa23e912d36354e12919ab47b4d88a2d0b30ecedccf79ff", "client_id"=>"4cdca12a3321e80f88000077", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207481
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=1a9222a171dfdc2edfa23e912d36354e12919ab47b4d88a2d0b30ecedccf79ff&client_id=4cdca12a3321e80f88000077&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207482
|
+
|
207483
|
+
|
207484
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207485
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000078"}
|
207486
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207487
|
+
Request 4cdca12a3321e80f88000078: Client 4cdca12a3321e80f88000077 granted access code 088f84057069cabc4c924318effe00b7f52142bf96b5822a8a59d13397ab0b68
|
207488
|
+
Access token request error: unsupported_grant_type This access grant type is not supported by this server.
|
207489
|
+
Request 4cdca12a3321e80f8800007a: Client UberClient requested code with scope read write
|
207490
|
+
|
207491
|
+
|
207492
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207493
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b721bc4fcd423e3f5e77415f2ff3cbd388419e4c60164436268f876da740e5c7", "client_id"=>"4cdca12a3321e80f88000079", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207494
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b721bc4fcd423e3f5e77415f2ff3cbd388419e4c60164436268f876da740e5c7&client_id=4cdca12a3321e80f88000079&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207495
|
+
|
207496
|
+
|
207497
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207498
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800007a"}
|
207499
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207500
|
+
Request 4cdca12a3321e80f8800007a: Client 4cdca12a3321e80f88000079 granted access code 04acf0e3f068ae186c033e5b76d873b13d6a5b96eea39d5d013ac1e843fbbc8a
|
207501
|
+
Access token request error: invalid_scope The requested scope is not supported.
|
207502
|
+
Request 4cdca12a3321e80f8800007c: Client UberClient requested code with scope read write
|
207503
|
+
|
207504
|
+
|
207505
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207506
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"acca7c4b401b3945694faf4bde1d8907c9ef5869180e1de960b3e505a24a8cc1", "client_id"=>"4cdca12a3321e80f8800007b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207507
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=acca7c4b401b3945694faf4bde1d8907c9ef5869180e1de960b3e505a24a8cc1&client_id=4cdca12a3321e80f8800007b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207508
|
+
|
207509
|
+
|
207510
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207511
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800007c"}
|
207512
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207513
|
+
Request 4cdca12a3321e80f8800007c: Client 4cdca12a3321e80f8800007b granted access code 8f9224a93a33a98640dab2b780fbd52ffcc3e07a87f2cdaf57a0a85c299c68cd
|
207514
|
+
Access token request error: invalid_scope The requested scope is not supported.
|
207515
|
+
Request 4cdca12a3321e80f8800007e: Client UberClient requested code with scope read write
|
207516
|
+
|
207517
|
+
|
207518
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207519
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"7605916535a702f4b97b05011e7f70d24deb0bfd10a38d9fd94b22452df3d79d", "client_id"=>"4cdca12a3321e80f8800007d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207520
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=7605916535a702f4b97b05011e7f70d24deb0bfd10a38d9fd94b22452df3d79d&client_id=4cdca12a3321e80f8800007d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207521
|
+
|
207522
|
+
|
207523
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207524
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f8800007e"}
|
207525
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207526
|
+
Request 4cdca12a3321e80f8800007e: Client 4cdca12a3321e80f8800007d granted access code 35211e5cb61705cc40db504242a78d9e73d412f13d80620e851887b05bd0728a
|
207527
|
+
Access token request error: invalid_scope The requested scope is not supported.
|
207528
|
+
Request 4cdca12a3321e80f88000080: Client UberClient requested code with scope read write
|
207529
|
+
|
207530
|
+
|
207531
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207532
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d0a958a10b087ca9c4d8029514ad17933df3b32e0e94f97f2b4daad22d5fb58d", "client_id"=>"4cdca12a3321e80f8800007f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207533
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d0a958a10b087ca9c4d8029514ad17933df3b32e0e94f97f2b4daad22d5fb58d&client_id=4cdca12a3321e80f8800007f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207534
|
+
|
207535
|
+
|
207536
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207537
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000080"}
|
207538
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207539
|
+
Request 4cdca12a3321e80f88000080: Client 4cdca12a3321e80f8800007f granted access code b102cd7382208cd4fbcc8d2ebdf1cd35b83d6edb75ffeab8447d72c45bdb7aff
|
207540
|
+
Access token 455503c6f91af2050b145521298b099da4228dfd5217d3cdd8bcb24e9ddf3146 granted to client UberClient, identity Batman
|
207541
|
+
Request 4cdca12a3321e80f88000082: Client UberClient requested code with scope read write
|
207542
|
+
|
207543
|
+
|
207544
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:34) [GET]
|
207545
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"12c09d2c1a149e36a1900bc68c0c0298f33f35e103e81304f794e271f8c19cb2", "client_id"=>"4cdca12a3321e80f88000081", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207546
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=12c09d2c1a149e36a1900bc68c0c0298f33f35e103e81304f794e271f8c19cb2&client_id=4cdca12a3321e80f88000081&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207547
|
+
|
207548
|
+
|
207549
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:34) [POST]
|
207550
|
+
Parameters: {"authorization"=>"4cdca12a3321e80f88000082"}
|
207551
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207552
|
+
Request 4cdca12a3321e80f88000082: Client 4cdca12a3321e80f88000081 granted access code 566c7d3e2ccec5a0dfd2e90d0ab72867823437ba1809ed8a5c3c6ae46cd417b7
|
207553
|
+
Access token 7eb191b721854c9a3fb82d1223b31383c6b4582958bd3bc44abb76167946928d granted to client UberClient, identity Batman
|
207554
|
+
Request 4cdca12b3321e80f88000084: Client UberClient requested code with scope read write
|
207555
|
+
|
207556
|
+
|
207557
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207558
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"655ff3617a623979f9e3d5a77eab8c72ed35ec1b146baf2d18135e4293d9945b", "client_id"=>"4cdca12b3321e80f88000083", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207559
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=655ff3617a623979f9e3d5a77eab8c72ed35ec1b146baf2d18135e4293d9945b&client_id=4cdca12b3321e80f88000083&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207560
|
+
|
207561
|
+
|
207562
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207563
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000084"}
|
207564
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207565
|
+
Request 4cdca12b3321e80f88000084: Client 4cdca12b3321e80f88000083 granted access code 146b845e4ca38b9c330c313936386e634078551148c2ad40c89ec48c3f5461a2
|
207566
|
+
Access token 84fdc79276a9b988ea560f22a90987476017994536193ec1380d1dee0936c14a granted to client UberClient, identity Batman
|
207567
|
+
Request 4cdca12b3321e80f88000086: Client UberClient requested code with scope read write
|
207568
|
+
|
207569
|
+
|
207570
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207571
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"07d5ff4307330e98a1b45b0a7b080990bdda2ec56e2bc635133bad55c44c0b1e", "client_id"=>"4cdca12b3321e80f88000085", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207572
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=07d5ff4307330e98a1b45b0a7b080990bdda2ec56e2bc635133bad55c44c0b1e&client_id=4cdca12b3321e80f88000085&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207573
|
+
|
207574
|
+
|
207575
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207576
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000086"}
|
207577
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207578
|
+
Request 4cdca12b3321e80f88000086: Client 4cdca12b3321e80f88000085 granted access code 58ba48c86945fb310f64238a937d3d1c45e4b74400d144ae4403d281f7fe5fb4
|
207579
|
+
Access token e37b505636713a8d690faf0f9be61bcfcc00b8a5ac8e1da81fd1c6cbe5524f66 granted to client UberClient, identity Batman
|
207580
|
+
Request 4cdca12b3321e80f88000088: Client UberClient requested code with scope read write
|
207581
|
+
|
207582
|
+
|
207583
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207584
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"8a3d1a701c670a7018e80171b19bd18ad3bc947b6af451ce285695864b3ea5c5", "client_id"=>"4cdca12b3321e80f88000087", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207585
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=8a3d1a701c670a7018e80171b19bd18ad3bc947b6af451ce285695864b3ea5c5&client_id=4cdca12b3321e80f88000087&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207586
|
+
|
207587
|
+
|
207588
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207589
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000088"}
|
207590
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207591
|
+
Request 4cdca12b3321e80f88000088: Client 4cdca12b3321e80f88000087 granted access code 4afd9acf31665673fb678fb9ded2ad54796cdcf0cd1bcf95d649fa339c8d4974
|
207592
|
+
Access token 36f37eb898b6347367b48c52da7e1602142223f193713bf19659cee1087762ed granted to client UberClient, identity Batman
|
207593
|
+
Request 4cdca12b3321e80f8800008a: Client UberClient requested code with scope read write
|
207594
|
+
|
207595
|
+
|
207596
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207597
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"fc01c7fd40712aaa6eb93b05af57ad35fa80028af271f735fec3e9837435a104", "client_id"=>"4cdca12b3321e80f88000089", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207598
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=fc01c7fd40712aaa6eb93b05af57ad35fa80028af271f735fec3e9837435a104&client_id=4cdca12b3321e80f88000089&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207599
|
+
|
207600
|
+
|
207601
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207602
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f8800008a"}
|
207603
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207604
|
+
Request 4cdca12b3321e80f8800008a: Client 4cdca12b3321e80f88000089 granted access code 8116b24e3ea3d85d76c550d93d6116b85afab65742b13ecbcf92df52c5808c33
|
207605
|
+
Access token 464f3e42456dc194a0fc5b6cd9d0b5e879e975db071e4af86cca8f8826332518 granted to client UberClient, identity Batman
|
207606
|
+
Request 4cdca12b3321e80f8800008c: Client UberClient requested code with scope read write
|
207607
|
+
|
207608
|
+
|
207609
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207610
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5caf29e0e285bdbb365c6b516496113cab4133c51ca37d867674607b49b82573", "client_id"=>"4cdca12b3321e80f8800008b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207611
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5caf29e0e285bdbb365c6b516496113cab4133c51ca37d867674607b49b82573&client_id=4cdca12b3321e80f8800008b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207612
|
+
|
207613
|
+
|
207614
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207615
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f8800008c"}
|
207616
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207617
|
+
Request 4cdca12b3321e80f8800008c: Client 4cdca12b3321e80f8800008b granted access code e8a3a393c3bf4e9ee7ceee86c006770631a9c1c5b08b6cee4bf2f5bdae3b4acb
|
207618
|
+
Access token e858addd512630449d85210a19d37ae696d447a3da6467e2f5d132dcba15230b granted to client UberClient, identity Batman
|
207619
|
+
Request 4cdca12b3321e80f8800008e: Client UberClient requested code with scope read write
|
207620
|
+
|
207621
|
+
|
207622
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207623
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5c989ef1523251b39e57e57087b1dbc00733c9759fb652b742836d341f7145f6", "client_id"=>"4cdca12b3321e80f8800008d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207624
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5c989ef1523251b39e57e57087b1dbc00733c9759fb652b742836d341f7145f6&client_id=4cdca12b3321e80f8800008d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207625
|
+
|
207626
|
+
|
207627
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207628
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f8800008e"}
|
207629
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207630
|
+
Request 4cdca12b3321e80f8800008e: Client 4cdca12b3321e80f8800008d granted access code 95f66162f34b9450ea89632662df21006b7978d689081e00371c24449bc5afae
|
207631
|
+
Access token 7cf04745043672afe30f76bb9db752ba24f3e258fc48ccba5732a81a09f4243e granted to client UberClient, identity Batman
|
207632
|
+
Request 4cdca12b3321e80f88000090: Client UberClient requested code with scope read write
|
207633
|
+
|
207634
|
+
|
207635
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207636
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"915f72ec7d501eb91e844b3884b2b4509ce7994e13c952531cbea50ed9ccb0f7", "client_id"=>"4cdca12b3321e80f8800008f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207637
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=915f72ec7d501eb91e844b3884b2b4509ce7994e13c952531cbea50ed9ccb0f7&client_id=4cdca12b3321e80f8800008f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207638
|
+
|
207639
|
+
|
207640
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207641
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000090"}
|
207642
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207643
|
+
Request 4cdca12b3321e80f88000090: Client 4cdca12b3321e80f8800008f granted access code 75d901663fc5db47e4bd8eef3accd5d5493f711c0485538ca5921f338df1e2e6
|
207644
|
+
Access token 6520a7672bc162248e64d050023479d773bc1665f33cff0831cd2817ec7d29fe granted to client UberClient, identity Batman
|
207645
|
+
Request 4cdca12b3321e80f88000092: Client UberClient requested code with scope read write
|
207646
|
+
|
207647
|
+
|
207648
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207649
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ec900975ada30d60e4a89da24c90845db9f3ac916ef89d1a26cbf51609181ba1", "client_id"=>"4cdca12b3321e80f88000091", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207650
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ec900975ada30d60e4a89da24c90845db9f3ac916ef89d1a26cbf51609181ba1&client_id=4cdca12b3321e80f88000091&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207651
|
+
|
207652
|
+
|
207653
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207654
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000092"}
|
207655
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207656
|
+
Request 4cdca12b3321e80f88000092: Client 4cdca12b3321e80f88000091 granted access code f262eea3de1b2c021fc662e504dcb490a5490e14680d3dd9e3b9d92ff18c8eed
|
207657
|
+
Access token 86fa54812caf965d6c8b8a41eea4c5d24a4bc6c66e16ed1ac6878bdcac9d5544 granted to client UberClient, identity Batman
|
207658
|
+
Request 4cdca12b3321e80f88000094: Client UberClient requested code with scope read write
|
207659
|
+
|
207660
|
+
|
207661
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207662
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"bf7639b49cd8fc20ab691516c759b9b0ee8a66fc39e9330fd617daf8c785892e", "client_id"=>"4cdca12b3321e80f88000093", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207663
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=bf7639b49cd8fc20ab691516c759b9b0ee8a66fc39e9330fd617daf8c785892e&client_id=4cdca12b3321e80f88000093&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207664
|
+
|
207665
|
+
|
207666
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207667
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000094"}
|
207668
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207669
|
+
Request 4cdca12b3321e80f88000094: Client 4cdca12b3321e80f88000093 granted access code aaccc6ca9a28aafe77c84c1e0653408c5b3fb87109eb16936243d9ceada83741
|
207670
|
+
Access token 6fb0c5f411d51d1ba1bbc5926e9473c4e40011eaecb4144d40c2bc95467a9faa granted to client UberClient, identity Batman
|
207671
|
+
Request 4cdca12b3321e80f88000096: Client UberClient requested code with scope read write
|
207672
|
+
|
207673
|
+
|
207674
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207675
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5a2f897839169ca9e3def0eef840be28a594a0a03ef9b2168685838298aa9c78", "client_id"=>"4cdca12b3321e80f88000095", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207676
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5a2f897839169ca9e3def0eef840be28a594a0a03ef9b2168685838298aa9c78&client_id=4cdca12b3321e80f88000095&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207677
|
+
|
207678
|
+
|
207679
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207680
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000096"}
|
207681
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207682
|
+
Request 4cdca12b3321e80f88000096: Client 4cdca12b3321e80f88000095 granted access code 0dea3dd436ff2d7833c83e1c121ce87a3bee3cce00841b162ef7194be00e9c89
|
207683
|
+
Access token 7fed9087e78b09e619700c4cb5ceac075b604cd21ef9a9254a70b2889195f105 granted to client UberClient, identity Batman
|
207684
|
+
Request 4cdca12b3321e80f88000098: Client UberClient requested code with scope read write
|
207685
|
+
|
207686
|
+
|
207687
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207688
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"1866b6ad7ed3a35811508d50b8543fb5b6e037eb703f4e637b35b4908f9e5fd8", "client_id"=>"4cdca12b3321e80f88000097", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207689
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=1866b6ad7ed3a35811508d50b8543fb5b6e037eb703f4e637b35b4908f9e5fd8&client_id=4cdca12b3321e80f88000097&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207690
|
+
|
207691
|
+
|
207692
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207693
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f88000098"}
|
207694
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207695
|
+
Request 4cdca12b3321e80f88000098: Client 4cdca12b3321e80f88000097 granted access code 4353cbf8f40905cb2818afc1663fdbb742573ebcf9500dbadbfa4ce7bd4decd4
|
207696
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207697
|
+
Request 4cdca12b3321e80f8800009a: Client UberClient requested code with scope read write
|
207698
|
+
|
207699
|
+
|
207700
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207701
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"bb5e1a9f152ac8fffccfa9591ecc884db09d995c605733fea2609610de6fe520", "client_id"=>"4cdca12b3321e80f88000099", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207702
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=bb5e1a9f152ac8fffccfa9591ecc884db09d995c605733fea2609610de6fe520&client_id=4cdca12b3321e80f88000099&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207703
|
+
|
207704
|
+
|
207705
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207706
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f8800009a"}
|
207707
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207708
|
+
Request 4cdca12b3321e80f8800009a: Client 4cdca12b3321e80f88000099 granted access code ff15007cb92c53c997c808b47085149ee2bffc8a01ad4e6c5e368484bc763dc4
|
207709
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207710
|
+
Request 4cdca12b3321e80f8800009c: Client UberClient requested code with scope read write
|
207711
|
+
|
207712
|
+
|
207713
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207714
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"91719ef7086c49375ed72c7891b76990c5df0c66b3fecf11850a2d32f888a441", "client_id"=>"4cdca12b3321e80f8800009b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207715
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=91719ef7086c49375ed72c7891b76990c5df0c66b3fecf11850a2d32f888a441&client_id=4cdca12b3321e80f8800009b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207716
|
+
|
207717
|
+
|
207718
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207719
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f8800009c"}
|
207720
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207721
|
+
Request 4cdca12b3321e80f8800009c: Client 4cdca12b3321e80f8800009b granted access code f09b87c8aac7269349e555e98686bbe83a98b4775fe9a9d042f96eba405e78e5
|
207722
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207723
|
+
Request 4cdca12b3321e80f8800009e: Client UberClient requested code with scope read write
|
207724
|
+
|
207725
|
+
|
207726
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207727
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"52e0ff777a2c6046781644f817fa9708a47cd4d0fdfcace72654cafbd1e9fe5a", "client_id"=>"4cdca12b3321e80f8800009d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207728
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=52e0ff777a2c6046781644f817fa9708a47cd4d0fdfcace72654cafbd1e9fe5a&client_id=4cdca12b3321e80f8800009d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207729
|
+
|
207730
|
+
|
207731
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207732
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f8800009e"}
|
207733
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207734
|
+
Request 4cdca12b3321e80f8800009e: Client 4cdca12b3321e80f8800009d granted access code 4ab721be542516f95bfacab9d23b9cdbba4f88a401d66a8fdefbda7990c96466
|
207735
|
+
Access token request error: invalid_client Client ID and client secret do not match.
|
207736
|
+
Request 4cdca12b3321e80f880000a0: Client UberClient requested code with scope read write
|
207737
|
+
|
207738
|
+
|
207739
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207740
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"2467eddd53d27f9865027fac9e1856a790027e05c83ac7771227931013d8ffce", "client_id"=>"4cdca12b3321e80f8800009f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207741
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=2467eddd53d27f9865027fac9e1856a790027e05c83ac7771227931013d8ffce&client_id=4cdca12b3321e80f8800009f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207742
|
+
|
207743
|
+
|
207744
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207745
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000a0"}
|
207746
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207747
|
+
Request 4cdca12b3321e80f880000a0: Client 4cdca12b3321e80f8800009f granted access code 4f4ba5321607cdf8f1855a763eefdd3efc61e680fa220b63598044876650bc5d
|
207748
|
+
Access token 565aabf1d088ccde726b1d85dbb1733c5aa568523b284eacdcbdb42d715d55e2 granted to client UberClient, identity Batman
|
207749
|
+
HTTP authorization failed invalid_token
|
207750
|
+
Request 4cdca12b3321e80f880000a2: Client UberClient requested code with scope read write
|
207751
|
+
|
207752
|
+
|
207753
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207754
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5d343875b50fde3f7e7f70dc7c7f248e15736ba9fe7de9a7082acb982d70f888", "client_id"=>"4cdca12b3321e80f880000a1", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207755
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5d343875b50fde3f7e7f70dc7c7f248e15736ba9fe7de9a7082acb982d70f888&client_id=4cdca12b3321e80f880000a1&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207756
|
+
|
207757
|
+
|
207758
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207759
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000a2"}
|
207760
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207761
|
+
Request 4cdca12b3321e80f880000a2: Client 4cdca12b3321e80f880000a1 granted access code a5640698af305cff1d51c3d41452d75e8eee89f811b30c252f7252d15af70a43
|
207762
|
+
Access token 55c420aab1a0116152a667e75919119471abb3cbc85f705529b46ea4649449c8 granted to client UberClient, identity Batman
|
207763
|
+
HTTP authorization failed invalid_token
|
207764
|
+
Request 4cdca12b3321e80f880000a4: Client UberClient requested code with scope read write
|
207765
|
+
|
207766
|
+
|
207767
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207768
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6b0bbc1b6424bae8607b60aac17ce5ff7c88c94ee1eaa32d3d0a4234e6ccbfd0", "client_id"=>"4cdca12b3321e80f880000a3", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207769
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6b0bbc1b6424bae8607b60aac17ce5ff7c88c94ee1eaa32d3d0a4234e6ccbfd0&client_id=4cdca12b3321e80f880000a3&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207770
|
+
|
207771
|
+
|
207772
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207773
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000a4"}
|
207774
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207775
|
+
Request 4cdca12b3321e80f880000a4: Client 4cdca12b3321e80f880000a3 granted access code 68fe5c81c59746f10d5721721e0c01ea209a2f01e0eea17f9fae30ca8714e155
|
207776
|
+
Access token ed164576cac22300f6f3453da6588b1d11dd935f92c9447bc2d8fadde82ed826 granted to client UberClient, identity Batman
|
207777
|
+
HTTP authorization failed invalid_token
|
207778
|
+
Request 4cdca12b3321e80f880000a6: Client UberClient requested code with scope read write
|
207779
|
+
|
207780
|
+
|
207781
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207782
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"42366fa428df26ef35b7249b3005b018b471d257ac90ff145b900d5db48bde2b", "client_id"=>"4cdca12b3321e80f880000a5", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207783
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=42366fa428df26ef35b7249b3005b018b471d257ac90ff145b900d5db48bde2b&client_id=4cdca12b3321e80f880000a5&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207784
|
+
|
207785
|
+
|
207786
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207787
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000a6"}
|
207788
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207789
|
+
Request 4cdca12b3321e80f880000a6: Client 4cdca12b3321e80f880000a5 granted access code 76051987bf50a3a193cecee768bc2a39410c3c8127bf344767012e7262d537ae
|
207790
|
+
Access token 654e08fdf73575146fc6d771642ea37c6a3ca360a0ba100ca8cbccc89651bdbe granted to client UberClient, identity Batman
|
207791
|
+
HTTP authorization failed invalid_token
|
207792
|
+
Request 4cdca12b3321e80f880000a8: Client UberClient requested code with scope read write
|
207793
|
+
|
207794
|
+
|
207795
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207796
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"10597cc51374c31ffc5b727f319a3ec4660853607a788e3eadfd90b4a7c8d201", "client_id"=>"4cdca12b3321e80f880000a7", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207797
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=10597cc51374c31ffc5b727f319a3ec4660853607a788e3eadfd90b4a7c8d201&client_id=4cdca12b3321e80f880000a7&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207798
|
+
|
207799
|
+
|
207800
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207801
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000a8"}
|
207802
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207803
|
+
Request 4cdca12b3321e80f880000a8: Client 4cdca12b3321e80f880000a7 granted access code d152a0e424e13581d4f5f58bd8ed0f4e4682eb118b5048a2e441f09ceddcc3dc
|
207804
|
+
Access token 864228f3f9f13ca4344c664963ca21339ae970d57bd7f843d570a668a7395c0b granted to client UberClient, identity Batman
|
207805
|
+
Authorized Batman
|
207806
|
+
|
207807
|
+
|
207808
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207809
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/change]
|
207810
|
+
Request 4cdca12b3321e80f880000aa: Client UberClient requested code with scope read write
|
207811
|
+
|
207812
|
+
|
207813
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207814
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"8ba3aae651c518634d8d442e071563fd24136c906136e7a1a48fd1b89157ef74", "client_id"=>"4cdca12b3321e80f880000a9", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207815
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=8ba3aae651c518634d8d442e071563fd24136c906136e7a1a48fd1b89157ef74&client_id=4cdca12b3321e80f880000a9&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207816
|
+
|
207817
|
+
|
207818
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207819
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000aa"}
|
207820
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207821
|
+
Request 4cdca12b3321e80f880000aa: Client 4cdca12b3321e80f880000a9 granted access code e220743f1898e67cb0caba0c321caecaf1ffa798a03c58b886c31159337cfdc2
|
207822
|
+
Access token ae027ee304cc73868d09fb103e3382d09ae950c2abc2883c0a6f5d6c644c6a4c granted to client UberClient, identity Batman
|
207823
|
+
Authorized Batman
|
207824
|
+
|
207825
|
+
|
207826
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207827
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
207828
|
+
Request 4cdca12b3321e80f880000ac: Client UberClient requested code with scope read write
|
207829
|
+
|
207830
|
+
|
207831
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207832
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"e69e6bfa797410919695a6a0f33caa78ed2c22f4b6d90dd0e37c28942596ca66", "client_id"=>"4cdca12b3321e80f880000ab", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207833
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=e69e6bfa797410919695a6a0f33caa78ed2c22f4b6d90dd0e37c28942596ca66&client_id=4cdca12b3321e80f880000ab&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207834
|
+
|
207835
|
+
|
207836
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207837
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000ac"}
|
207838
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207839
|
+
Request 4cdca12b3321e80f880000ac: Client 4cdca12b3321e80f880000ab granted access code 8923ad3a4de50d520f297f1fbe00d5d616d1fc8ed583fea0d7f06423b3adf64e
|
207840
|
+
Access token 3823ab85c8d442b578af22fd8a9d2bde9ca0491e421363c389ccfa52c01e9e4c granted to client UberClient, identity Batman
|
207841
|
+
|
207842
|
+
|
207843
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207844
|
+
Parameters: {"oauth_token"=>"3823ab85c8d442b578af22fd8a9d2bde9ca0491e421363c389ccfa52c01e9e4c"}
|
207845
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
207846
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
207847
|
+
Request 4cdca12b3321e80f880000ae: Client UberClient requested code with scope read write
|
207848
|
+
|
207849
|
+
|
207850
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207851
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"caf992871e69a85febfd328e8847f3178f3dfd21a12026f8e93544cadd0601af", "client_id"=>"4cdca12b3321e80f880000ad", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207852
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=caf992871e69a85febfd328e8847f3178f3dfd21a12026f8e93544cadd0601af&client_id=4cdca12b3321e80f880000ad&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207853
|
+
|
207854
|
+
|
207855
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207856
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000ae"}
|
207857
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207858
|
+
Request 4cdca12b3321e80f880000ae: Client 4cdca12b3321e80f880000ad granted access code f971e98c6b2e366eebf1338224fbbd6162a530b814a2f52730593c8edaf0f86a
|
207859
|
+
Access token e0e0656a3d59f8d3d268e9bb5b4916d24efd24647446fa0ba7074251d05e81b4 granted to client UberClient, identity Batman
|
207860
|
+
|
207861
|
+
|
207862
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207863
|
+
Parameters: {"oauth_token"=>"e0e0656a3d59f8d3d268e9bb5b4916d24efd24647446fa0ba7074251d05e81b4"}
|
207864
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
207865
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
207866
|
+
Request 4cdca12b3321e80f880000b0: Client UberClient requested code with scope read write
|
207867
|
+
|
207868
|
+
|
207869
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207870
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"490f7ba8eff5a9b1b3aee4317b549c0d460546c0a496cfcef51309961cbeb498", "client_id"=>"4cdca12b3321e80f880000af", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207871
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=490f7ba8eff5a9b1b3aee4317b549c0d460546c0a496cfcef51309961cbeb498&client_id=4cdca12b3321e80f880000af&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207872
|
+
|
207873
|
+
|
207874
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207875
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000b0"}
|
207876
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207877
|
+
Request 4cdca12b3321e80f880000b0: Client 4cdca12b3321e80f880000af granted access code 6d770056ad302cce598f4ffc36f8de0250b47cf34d6608454752bc68fdde61e3
|
207878
|
+
Access token 403e2173d3e964a74b037c54fdd3f01e6b67f528bb56a4d8cbc43548299d1984 granted to client UberClient, identity Batman
|
207879
|
+
|
207880
|
+
|
207881
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207882
|
+
Parameters: {"oauth_token"=>"403e2173d3e964a74b037c54fdd3f01e6b67f528bb56a4d8cbc43548299d1984"}
|
207883
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
207884
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
207885
|
+
Request 4cdca12b3321e80f880000b2: Client UberClient requested code with scope read write
|
207886
|
+
|
207887
|
+
|
207888
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207889
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b2afa0d390947877beb5bd1ebc1391fcb6a808e0560d4c3b6619ad38a51124a6", "client_id"=>"4cdca12b3321e80f880000b1", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207890
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b2afa0d390947877beb5bd1ebc1391fcb6a808e0560d4c3b6619ad38a51124a6&client_id=4cdca12b3321e80f880000b1&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207891
|
+
|
207892
|
+
|
207893
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207894
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000b2"}
|
207895
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207896
|
+
Request 4cdca12b3321e80f880000b2: Client 4cdca12b3321e80f880000b1 granted access code 5d74d5ea6a8b368486dff68b02f78cb91f6cd1d7a1efc732f311528223499253
|
207897
|
+
Access token 2b4e7ef300905b2c6aeb6bc46e0bb09b97fcf5fd8b32bb9997da4d033ff4c060 granted to client UberClient, identity Batman
|
207898
|
+
|
207899
|
+
|
207900
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207901
|
+
Parameters: {"oauth_token"=>"2b4e7ef300905b2c6aeb6bc46e0bb09b97fcf5fd8b32bb9997da4d033ff4c060"}
|
207902
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
207903
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
207904
|
+
Request 4cdca12b3321e80f880000b4: Client UberClient requested code with scope read write
|
207905
|
+
|
207906
|
+
|
207907
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207908
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"23cd477a7ef252af5fad6850f49e30259687ce6bbbba0f0d1d57b3689d25d26f", "client_id"=>"4cdca12b3321e80f880000b3", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207909
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=23cd477a7ef252af5fad6850f49e30259687ce6bbbba0f0d1d57b3689d25d26f&client_id=4cdca12b3321e80f880000b3&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207910
|
+
|
207911
|
+
|
207912
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207913
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000b4"}
|
207914
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207915
|
+
Request 4cdca12b3321e80f880000b4: Client 4cdca12b3321e80f880000b3 granted access code e517c2ac95d7db5d03e3ef3937bf76c02dc0d0a04fde71b93a57d9a5f460d945
|
207916
|
+
Access token 13159d18b2794e7d0c0d716ccc4a36dd27bc712eac35a3ddc21a9ce7dd37bece granted to client UberClient, identity Batman
|
207917
|
+
HTTP authorization failed invalid_token
|
207918
|
+
Request 4cdca12b3321e80f880000b6: Client UberClient requested code with scope read write
|
207919
|
+
|
207920
|
+
|
207921
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207922
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"66471f6f17c65b8f8c9865361ada5eb3bd537a9767c38b2b224944f1883801c1", "client_id"=>"4cdca12b3321e80f880000b5", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207923
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=66471f6f17c65b8f8c9865361ada5eb3bd537a9767c38b2b224944f1883801c1&client_id=4cdca12b3321e80f880000b5&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207924
|
+
|
207925
|
+
|
207926
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207927
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000b6"}
|
207928
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207929
|
+
Request 4cdca12b3321e80f880000b6: Client 4cdca12b3321e80f880000b5 granted access code b58406368d833f4444305475aba15155e60474cd360d96d2ffbb02e000a37f8a
|
207930
|
+
Access token 3502921f84a64bee5d619ba217c1ea22834fe6c728220e1f54875ad2bcbbf838 granted to client UberClient, identity Batman
|
207931
|
+
HTTP authorization failed invalid_token
|
207932
|
+
Request 4cdca12b3321e80f880000b8: Client UberClient requested code with scope read write
|
207933
|
+
|
207934
|
+
|
207935
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207936
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"72967ff9b6c65021b6606b1117bcfea1b8b69e19155b9619e2e89e717a86ce0e", "client_id"=>"4cdca12b3321e80f880000b7", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207937
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=72967ff9b6c65021b6606b1117bcfea1b8b69e19155b9619e2e89e717a86ce0e&client_id=4cdca12b3321e80f880000b7&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207938
|
+
|
207939
|
+
|
207940
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207941
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000b8"}
|
207942
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207943
|
+
Request 4cdca12b3321e80f880000b8: Client 4cdca12b3321e80f880000b7 granted access code 99d38e9cf63a3dbf4e56ca2e7bc2c6730e6c8f7fc43ae04f88f8c88cb4264af2
|
207944
|
+
Access token 261949b120ce1ed30ac7b144aefb3ee9869f117fa1d992c13f6c2a93c5ba9db3 granted to client UberClient, identity Batman
|
207945
|
+
HTTP authorization failed invalid_token
|
207946
|
+
Request 4cdca12b3321e80f880000ba: Client UberClient requested code with scope read write
|
207947
|
+
|
207948
|
+
|
207949
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207950
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"7c718f49ad9ac687cfc8e3c07341a7782b8233d819f815695e6d99bb477db7f8", "client_id"=>"4cdca12b3321e80f880000b9", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207951
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=7c718f49ad9ac687cfc8e3c07341a7782b8233d819f815695e6d99bb477db7f8&client_id=4cdca12b3321e80f880000b9&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207952
|
+
|
207953
|
+
|
207954
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207955
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000ba"}
|
207956
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207957
|
+
Request 4cdca12b3321e80f880000ba: Client 4cdca12b3321e80f880000b9 granted access code 61b817d2f43b89f8e3724596da188ff9609cfa017b894db5b3bc470c561e6ca6
|
207958
|
+
Access token 81945ce78c27a6247d170ac68278c380559e28d11f380decc1edb59153d46ca8 granted to client UberClient, identity Batman
|
207959
|
+
HTTP authorization failed invalid_token
|
207960
|
+
Request 4cdca12b3321e80f880000bc: Client UberClient requested code with scope read write
|
207961
|
+
|
207962
|
+
|
207963
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207964
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"8439fef664ea012115d859b656db4a1dce84cb3444913b50027f5ab8116f5c97", "client_id"=>"4cdca12b3321e80f880000bb", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207965
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=8439fef664ea012115d859b656db4a1dce84cb3444913b50027f5ab8116f5c97&client_id=4cdca12b3321e80f880000bb&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207966
|
+
|
207967
|
+
|
207968
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207969
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000bc"}
|
207970
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207971
|
+
Request 4cdca12b3321e80f880000bc: Client 4cdca12b3321e80f880000bb granted access code 7a908e5de1c0d26d06592f2bd82dd71eefdf8865ca61ceddd38e633ecba268f6
|
207972
|
+
Access token d64489c96cf8d9909fff41c9372e4ff7a613c8ed30482b313bc8580f26e28b63 granted to client UberClient, identity Batman
|
207973
|
+
Authorized Batman
|
207974
|
+
|
207975
|
+
|
207976
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207977
|
+
Parameters: {"oauth_token"=>"d64489c96cf8d9909fff41c9372e4ff7a613c8ed30482b313bc8580f26e28b63"}
|
207978
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
207979
|
+
Request 4cdca12b3321e80f880000be: Client UberClient requested code with scope read write
|
207980
|
+
|
207981
|
+
|
207982
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
207983
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"9bc989f4e6b998a2e4609f7673e83e831455b43c58c2437a62b9c7912c8987d8", "client_id"=>"4cdca12b3321e80f880000bd", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
207984
|
+
Completed in 8ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=9bc989f4e6b998a2e4609f7673e83e831455b43c58c2437a62b9c7912c8987d8&client_id=4cdca12b3321e80f880000bd&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
207985
|
+
|
207986
|
+
|
207987
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207988
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000be"}
|
207989
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
207990
|
+
Request 4cdca12b3321e80f880000be: Client 4cdca12b3321e80f880000bd granted access code cf1ca92f9fcf2cb2ba3ba911f4b01033bf4ada0b18d5714a5d762ad4d954fd00
|
207991
|
+
Access token 38cc85ace316d24332185019377ffdb58c1b7c9131a399d149f97719e752305f granted to client UberClient, identity Batman
|
207992
|
+
Authorized Batman
|
207993
|
+
|
207994
|
+
|
207995
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
207996
|
+
Parameters: {"oauth_token"=>"38cc85ace316d24332185019377ffdb58c1b7c9131a399d149f97719e752305f"}
|
207997
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/change]
|
207998
|
+
Request 4cdca12b3321e80f880000c0: Client UberClient requested code with scope read write
|
207999
|
+
|
208000
|
+
|
208001
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
208002
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"1228527c801227271c481575f0b2a4fc6d85469ea6b246d0b25d16c2bc7b7cc6", "client_id"=>"4cdca12b3321e80f880000bf", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208003
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=1228527c801227271c481575f0b2a4fc6d85469ea6b246d0b25d16c2bc7b7cc6&client_id=4cdca12b3321e80f880000bf&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208004
|
+
|
208005
|
+
|
208006
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
208007
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000c0"}
|
208008
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208009
|
+
Request 4cdca12b3321e80f880000c0: Client 4cdca12b3321e80f880000bf granted access code 4ad5790fb7e3cf3792a790a110f361a32f6030320c6ec7a4815f25f73dcfb68a
|
208010
|
+
Access token 8bf45d3d1129cb2958f11484fbe059b30a3497e44618a1798f71d3f78a8d0827 granted to client UberClient, identity Batman
|
208011
|
+
|
208012
|
+
|
208013
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
208014
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208015
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
208016
|
+
Request 4cdca12b3321e80f880000c2: Client UberClient requested code with scope read write
|
208017
|
+
|
208018
|
+
|
208019
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
208020
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"683283f342e45613428cf8a8f0a9685abdadde5f2681226daa2cfba9be2e8efc", "client_id"=>"4cdca12b3321e80f880000c1", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208021
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=683283f342e45613428cf8a8f0a9685abdadde5f2681226daa2cfba9be2e8efc&client_id=4cdca12b3321e80f880000c1&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208022
|
+
|
208023
|
+
|
208024
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
208025
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000c2"}
|
208026
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208027
|
+
Request 4cdca12b3321e80f880000c2: Client 4cdca12b3321e80f880000c1 granted access code 4bfc5d77640c191a66fe41b8d9289ed25632328db6e260d0470b136f96f528cf
|
208028
|
+
Access token 9efdbd04968641a5c940011694777e7279adc2305dec28cc84cb532368090d20 granted to client UberClient, identity Batman
|
208029
|
+
|
208030
|
+
|
208031
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
208032
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208033
|
+
Completed in 1ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
208034
|
+
Request 4cdca12b3321e80f880000c4: Client UberClient requested code with scope read write
|
208035
|
+
|
208036
|
+
|
208037
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:35) [GET]
|
208038
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"cbeffcaf546b401742c9ab94427660d9d9ea2dc65563843f59062830b6c3776d", "client_id"=>"4cdca12b3321e80f880000c3", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208039
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=cbeffcaf546b401742c9ab94427660d9d9ea2dc65563843f59062830b6c3776d&client_id=4cdca12b3321e80f880000c3&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208040
|
+
|
208041
|
+
|
208042
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
208043
|
+
Parameters: {"authorization"=>"4cdca12b3321e80f880000c4"}
|
208044
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208045
|
+
Request 4cdca12b3321e80f880000c4: Client 4cdca12b3321e80f880000c3 granted access code 7f3df9508d6b09f3bbc4154209e54232776c8c6e63719f8ba24f6d269abcf6bd
|
208046
|
+
Access token f2c3adce96e9b6e77d394e4a49c8d6992f45b28ac89e84df9f510163335e9674 granted to client UberClient, identity Batman
|
208047
|
+
|
208048
|
+
|
208049
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:35) [POST]
|
208050
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208051
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
208052
|
+
Request 4cdca12c3321e80f880000c6: Client UberClient requested code with scope read write
|
208053
|
+
|
208054
|
+
|
208055
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208056
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"4632a94aba8dd1b62b6854f79010c815b1fd04dd14a65294c0ec4af4799e7c30", "client_id"=>"4cdca12b3321e80f880000c5", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208057
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=4632a94aba8dd1b62b6854f79010c815b1fd04dd14a65294c0ec4af4799e7c30&client_id=4cdca12b3321e80f880000c5&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208058
|
+
|
208059
|
+
|
208060
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208061
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000c6"}
|
208062
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208063
|
+
Request 4cdca12c3321e80f880000c6: Client 4cdca12b3321e80f880000c5 granted access code 5422e643ab2b95eaebaa20d46132c49baf5953d1eabe5704b36791b34c31e1f7
|
208064
|
+
Access token 12f3cf50a8d7459b9ccac90f5029d6f1d797e4cada1764159f5fef7e1020f8c1 granted to client UberClient, identity Batman
|
208065
|
+
|
208066
|
+
|
208067
|
+
Processing ApiController#change (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208068
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208069
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/change]
|
208070
|
+
Request 4cdca12c3321e80f880000c8: Client UberClient requested code with scope read write
|
208071
|
+
|
208072
|
+
|
208073
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208074
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"47a66989e7f2c109e0133aed94f0ecde5a6741c917d22599d2191b33f65f9f10", "client_id"=>"4cdca12c3321e80f880000c7", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208075
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=47a66989e7f2c109e0133aed94f0ecde5a6741c917d22599d2191b33f65f9f10&client_id=4cdca12c3321e80f880000c7&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208076
|
+
|
208077
|
+
|
208078
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208079
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000c8"}
|
208080
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208081
|
+
Request 4cdca12c3321e80f880000c8: Client 4cdca12c3321e80f880000c7 granted access code 7166e436aa90b0b5a67ac6ef32936b36b76f9397d362300913df9524641b3ef6
|
208082
|
+
Access token da889d9ca99a7deb3f28885f0891a3101eccda1b5d8caa4a5608103c3b0a934b granted to client UberClient, identity Batman
|
208083
|
+
Request 4cdca12c3321e80f880000ca: Client UberClient requested code with scope read write
|
208084
|
+
|
208085
|
+
|
208086
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208087
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6b0148c112b9c76b950a3a1b70d74dc4b7e6bbe8829f206b367c4a0ffa4c9077", "client_id"=>"4cdca12c3321e80f880000c9", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208088
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6b0148c112b9c76b950a3a1b70d74dc4b7e6bbe8829f206b367c4a0ffa4c9077&client_id=4cdca12c3321e80f880000c9&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208089
|
+
|
208090
|
+
|
208091
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208092
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000ca"}
|
208093
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208094
|
+
Request 4cdca12c3321e80f880000ca: Client 4cdca12c3321e80f880000c9 granted access code 40856c63550a619a2d5bf900222ae06b3e0f3240f2295714f719dbe14fa738cc
|
208095
|
+
Access token d5d382dccd6f5b827af89a1e46f68686cc21e8ad973b2dd77bccaede45410095 granted to client UberClient, identity Batman
|
208096
|
+
Request 4cdca12c3321e80f880000cc: Client UberClient requested code with scope read write
|
208097
|
+
|
208098
|
+
|
208099
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208100
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"724789730be19cc86271ef2e64d3b5dc930bef86a41df2a81a25796cca89c984", "client_id"=>"4cdca12c3321e80f880000cb", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208101
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=724789730be19cc86271ef2e64d3b5dc930bef86a41df2a81a25796cca89c984&client_id=4cdca12c3321e80f880000cb&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208102
|
+
|
208103
|
+
|
208104
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208105
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000cc"}
|
208106
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208107
|
+
Request 4cdca12c3321e80f880000cc: Client 4cdca12c3321e80f880000cb granted access code 26c54be88daea8ebeef462f789830085e93400f81d3ebb894614900c096299e1
|
208108
|
+
Access token ec01337de5382309932e9ebd2b12b0242e2f63383c19609eb62661cd67e3195e granted to client UberClient, identity Batman
|
208109
|
+
Request 4cdca12c3321e80f880000ce: Client UberClient requested code with scope read write
|
208110
|
+
|
208111
|
+
|
208112
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208113
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"11a6657a26c0a5dc2701f5d53b8cf35a9a1887fb9ae02ad20f964e43af5e7156", "client_id"=>"4cdca12c3321e80f880000cd", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208114
|
+
Completed in 3ms (View: 1 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=11a6657a26c0a5dc2701f5d53b8cf35a9a1887fb9ae02ad20f964e43af5e7156&client_id=4cdca12c3321e80f880000cd&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208115
|
+
|
208116
|
+
|
208117
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208118
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000ce"}
|
208119
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208120
|
+
Request 4cdca12c3321e80f880000ce: Client 4cdca12c3321e80f880000cd granted access code 9237592dc0be51ff24d327de31f5f5e07065fbb2925ac2bbffb508bca43ec063
|
208121
|
+
Access token c99e0587b39b5762b0967caf6e95416023c82d9dd75154fda90066a84e8cb3ef granted to client UberClient, identity Batman
|
208122
|
+
Request 4cdca12c3321e80f880000d0: Client UberClient requested code with scope read write
|
208123
|
+
|
208124
|
+
|
208125
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208126
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6983d82838943aef87e4a8949dab74c298e846df33f8c8b08367f8bfbf175c44", "client_id"=>"4cdca12c3321e80f880000cf", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208127
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6983d82838943aef87e4a8949dab74c298e846df33f8c8b08367f8bfbf175c44&client_id=4cdca12c3321e80f880000cf&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208128
|
+
|
208129
|
+
|
208130
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208131
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000d0"}
|
208132
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208133
|
+
Request 4cdca12c3321e80f880000d0: Client 4cdca12c3321e80f880000cf granted access code 7c90ed114aa70d2675ca962d2c0a628d6a8cae4c62d6b124fa3dbf573cb80021
|
208134
|
+
Access token a219c4ed5b907a78299d749478b7139c8d73291922b3eea03bb7239d82dc2c34 granted to client UberClient, identity Batman
|
208135
|
+
Authorized Batman
|
208136
|
+
|
208137
|
+
|
208138
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208139
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208140
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
208141
|
+
Request 4cdca12c3321e80f880000d2: Client UberClient requested code with scope read write
|
208142
|
+
|
208143
|
+
|
208144
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208145
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f0a5c1851cb71ac4d536390461d8b6af69573112f42e1ce8d8042caf0731227e", "client_id"=>"4cdca12c3321e80f880000d1", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208146
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f0a5c1851cb71ac4d536390461d8b6af69573112f42e1ce8d8042caf0731227e&client_id=4cdca12c3321e80f880000d1&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208147
|
+
|
208148
|
+
|
208149
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208150
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000d2"}
|
208151
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208152
|
+
Request 4cdca12c3321e80f880000d2: Client 4cdca12c3321e80f880000d1 granted access code c1a0e13648165bc696ed48df090fde90c78874d6ae631b63d83e23cb8feb4811
|
208153
|
+
Access token 3e73c86aac483eada9b86ca8df669efaba5ae540bf8b93ce748a5dc500a867ab granted to client UberClient, identity Batman
|
208154
|
+
Authorized Batman
|
208155
|
+
|
208156
|
+
|
208157
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208158
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208159
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
208160
|
+
Request 4cdca12c3321e80f880000d4: Client UberClient requested code with scope read write
|
208161
|
+
|
208162
|
+
|
208163
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208164
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"1e3446066079ed5ca2f6320d39565fed2b9d006bba9c61952c28c9ba8ee63511", "client_id"=>"4cdca12c3321e80f880000d3", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208165
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=1e3446066079ed5ca2f6320d39565fed2b9d006bba9c61952c28c9ba8ee63511&client_id=4cdca12c3321e80f880000d3&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208166
|
+
|
208167
|
+
|
208168
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208169
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000d4"}
|
208170
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208171
|
+
Request 4cdca12c3321e80f880000d4: Client 4cdca12c3321e80f880000d3 granted access code 8c6cbdec01f5518a21a239c80ec1d065b1a8b8c445e68d5a9509dcfcf86efed8
|
208172
|
+
Access token 288bdab8bf9bb0df162bba9a2b872f6d4f2f54918b105e848f6e225e645c99c6 granted to client UberClient, identity Batman
|
208173
|
+
Authorized Batman
|
208174
|
+
|
208175
|
+
|
208176
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208177
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208178
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
208179
|
+
Request 4cdca12c3321e80f880000d6: Client UberClient requested code with scope read write
|
208180
|
+
|
208181
|
+
|
208182
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208183
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"53dec057343a09e0135bacc837aa1cf5642e44fda42ad867bd4d63b707fc501f", "client_id"=>"4cdca12c3321e80f880000d5", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208184
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=53dec057343a09e0135bacc837aa1cf5642e44fda42ad867bd4d63b707fc501f&client_id=4cdca12c3321e80f880000d5&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208185
|
+
|
208186
|
+
|
208187
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208188
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000d6"}
|
208189
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208190
|
+
Request 4cdca12c3321e80f880000d6: Client 4cdca12c3321e80f880000d5 granted access code a63c3e37319abf63ad28d3d9baf82aad69b027bb0a946452ba37b1a564c4faf4
|
208191
|
+
Access token dc7af18284170e232d8eb514bce494102a79913984b26f9f0a6c1463058238f1 granted to client UberClient, identity Batman
|
208192
|
+
Authorized Batman
|
208193
|
+
|
208194
|
+
|
208195
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208196
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208197
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
208198
|
+
Request 4cdca12c3321e80f880000d8: Client UberClient requested code with scope read write
|
208199
|
+
|
208200
|
+
|
208201
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208202
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"4b536934c695e70eea6a047de1a175efed75576b5a0453128e726ad2414abd9c", "client_id"=>"4cdca12c3321e80f880000d7", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208203
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=4b536934c695e70eea6a047de1a175efed75576b5a0453128e726ad2414abd9c&client_id=4cdca12c3321e80f880000d7&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208204
|
+
|
208205
|
+
|
208206
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208207
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000d8"}
|
208208
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208209
|
+
Request 4cdca12c3321e80f880000d8: Client 4cdca12c3321e80f880000d7 granted access code 6ff02ad9017aba52142d1f6f849d9b2276645a6ebdc377220291c1260cddf506
|
208210
|
+
Access token 63355929e5975f04439bbd949defabfa83aa7be0a6d024a0d0ea64216aad65e1 granted to client UberClient, identity Batman
|
208211
|
+
Authorized Batman
|
208212
|
+
|
208213
|
+
|
208214
|
+
Processing ApiController#calc (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208215
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208216
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/calc]
|
208217
|
+
Request 4cdca12c3321e80f880000da: Client UberClient requested code with scope read write
|
208218
|
+
|
208219
|
+
|
208220
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208221
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"72937f77664e4f00e1b0a4268cbd5af282e4e09ba6b50410a8a5df7089aeb24b", "client_id"=>"4cdca12c3321e80f880000d9", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208222
|
+
Completed in 4ms (View: 1 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=72937f77664e4f00e1b0a4268cbd5af282e4e09ba6b50410a8a5df7089aeb24b&client_id=4cdca12c3321e80f880000d9&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208223
|
+
|
208224
|
+
|
208225
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208226
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000da"}
|
208227
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208228
|
+
Request 4cdca12c3321e80f880000da: Client 4cdca12c3321e80f880000d9 granted access code 7361438adb4a8c35b54014fca66cdca97b8f516dc332e337f3ec32ee4105b990
|
208229
|
+
Access token b35f803185cf99b69058a9e3213a418d4836d01fb85561272526edde68b960da granted to client UberClient, identity Batman
|
208230
|
+
|
208231
|
+
|
208232
|
+
Processing ApiController#list_tokens (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208233
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/list_tokens]
|
208234
|
+
Request 4cdca12c3321e80f880000dc: Client UberClient requested code with scope read write
|
208235
|
+
|
208236
|
+
|
208237
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208238
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"deeb277c0cf3e313b3dbf344127425a0308d02e1e6e00baeb13d88d2046f6619", "client_id"=>"4cdca12c3321e80f880000db", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208239
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=deeb277c0cf3e313b3dbf344127425a0308d02e1e6e00baeb13d88d2046f6619&client_id=4cdca12c3321e80f880000db&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208240
|
+
|
208241
|
+
|
208242
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208243
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000dc"}
|
208244
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208245
|
+
Request 4cdca12c3321e80f880000dc: Client 4cdca12c3321e80f880000db granted access code 62e64c557800e3ac48a5bc069a646533dc4645f14bd5940057b46400beffaa38
|
208246
|
+
Access token 603226cf62ac5e2f5c677612b72d0e7819716022fb351c5c55bb8874cf056dfb granted to client UberClient, identity Batman
|
208247
|
+
|
208248
|
+
|
208249
|
+
Processing ApiController#list_tokens (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208250
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/list_tokens]
|
208251
|
+
Request 4cdca12c3321e80f880000de: Client UberClient requested code with scope read write
|
208252
|
+
|
208253
|
+
|
208254
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208255
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"1800edbdefe68522252ce6ab5de8084c03aa035f904cb5c8b0d2f5eb23f9bb4f", "client_id"=>"4cdca12c3321e80f880000dd", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208256
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=1800edbdefe68522252ce6ab5de8084c03aa035f904cb5c8b0d2f5eb23f9bb4f&client_id=4cdca12c3321e80f880000dd&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208257
|
+
|
208258
|
+
|
208259
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208260
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000de"}
|
208261
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208262
|
+
Request 4cdca12c3321e80f880000de: Client 4cdca12c3321e80f880000dd granted access code 1a7d33be24cc2ef297012129908dadec52e9d46ed2d5535cd3a379cb508d886c
|
208263
|
+
Access token fb4a128de1f9035ce26a0206220a497e4954204e04bea0d40b1eff106ee716dd granted to client UberClient, identity Batman
|
208264
|
+
HTTP authorization failed invalid_token
|
208265
|
+
Request 4cdca12c3321e80f880000e0: Client UberClient requested code with scope read write
|
208266
|
+
|
208267
|
+
|
208268
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208269
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ba46f8ae42363a21e2c345eb7e31600ea91d2d70c10a8c8fb1b2ec7fa9e2e138", "client_id"=>"4cdca12c3321e80f880000df", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208270
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ba46f8ae42363a21e2c345eb7e31600ea91d2d70c10a8c8fb1b2ec7fa9e2e138&client_id=4cdca12c3321e80f880000df&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208271
|
+
|
208272
|
+
|
208273
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208274
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000e0"}
|
208275
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
208276
|
+
Request 4cdca12c3321e80f880000e0: Client 4cdca12c3321e80f880000df granted access code a865c875f39eae9a4e666d48da595cb64de8a4d9cd16f25df8458aa30d585644
|
208277
|
+
Access token 95f37693b97d9fcf031995b851d925f587ee9bcfafe1d124f1df5929dace4c90 granted to client UberClient, identity Batman
|
208278
|
+
HTTP authorization failed invalid_token
|
208279
|
+
Request 4cdca12c3321e80f880000e2: Client UberClient requested code with scope read write
|
208280
|
+
|
208281
|
+
|
208282
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208283
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"2685d9adcfefbb30e5c0485bf20c7d92c5c3ffb5a3a383daf87b7c7f5dc2f4f6", "client_id"=>"4cdca12c3321e80f880000e1", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208284
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=2685d9adcfefbb30e5c0485bf20c7d92c5c3ffb5a3a383daf87b7c7f5dc2f4f6&client_id=4cdca12c3321e80f880000e1&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208285
|
+
|
208286
|
+
|
208287
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208288
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000e2"}
|
208289
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208290
|
+
Request 4cdca12c3321e80f880000e2: Client 4cdca12c3321e80f880000e1 granted access code bdebeb7433d75e89dc753ee9109b22796b1a67c5b5612b52e5433ef407334d7d
|
208291
|
+
Access token fd8002012fefeb1b4492e3b21bab1b2cd25615bf8807746b8af378b4cba51df6 granted to client UberClient, identity Batman
|
208292
|
+
HTTP authorization failed invalid_token
|
208293
|
+
Request 4cdca12c3321e80f880000e4: Client UberClient requested code with scope read write
|
208294
|
+
|
208295
|
+
|
208296
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208297
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"3eb8571b03ca6c03d253669466391bbf57d4ee5d29096ed35fc85ead49f0beb4", "client_id"=>"4cdca12c3321e80f880000e3", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208298
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=3eb8571b03ca6c03d253669466391bbf57d4ee5d29096ed35fc85ead49f0beb4&client_id=4cdca12c3321e80f880000e3&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208299
|
+
|
208300
|
+
|
208301
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208302
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000e4"}
|
208303
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208304
|
+
Request 4cdca12c3321e80f880000e4: Client 4cdca12c3321e80f880000e3 granted access code 750556d22f0dbe057d981576d4c9ab9a4361459c52158d68dc68256538c20eef
|
208305
|
+
Access token dd636f2bea8e6e0b1f9f073360a9b747ae78f07ba0cc855afd2fb7310b8ae485 granted to client UberClient, identity Batman
|
208306
|
+
HTTP authorization failed invalid_token
|
208307
|
+
Request 4cdca12c3321e80f880000e6: Client UberClient requested code with scope read write
|
208308
|
+
|
208309
|
+
|
208310
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208311
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"828525f74ee50e02922f79946bbe7d3c815ec5a5b2e1f3259d6cc3bc9e29a0f2", "client_id"=>"4cdca12c3321e80f880000e5", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208312
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=828525f74ee50e02922f79946bbe7d3c815ec5a5b2e1f3259d6cc3bc9e29a0f2&client_id=4cdca12c3321e80f880000e5&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208313
|
+
|
208314
|
+
|
208315
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208316
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000e6"}
|
208317
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208318
|
+
Request 4cdca12c3321e80f880000e6: Client 4cdca12c3321e80f880000e5 granted access code 3bbeb5eba99b342bcbef9cdd7fe0542b00dc5634989eee300d0256197e97cc13
|
208319
|
+
Access token 6095690a1886e314b9efb91937400f6fcc4b234d5df6df4851b335da9306001b granted to client UberClient, identity Batman
|
208320
|
+
HTTP authorization failed invalid_token
|
208321
|
+
Request 4cdca12c3321e80f880000e8: Client UberClient requested code with scope read write
|
208322
|
+
|
208323
|
+
|
208324
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208325
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f85f5d1dc6cde61a8967120107c24ec8ba647bdbca099d797213633884c849c4", "client_id"=>"4cdca12c3321e80f880000e7", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208326
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f85f5d1dc6cde61a8967120107c24ec8ba647bdbca099d797213633884c849c4&client_id=4cdca12c3321e80f880000e7&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208327
|
+
|
208328
|
+
|
208329
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208330
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000e8"}
|
208331
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208332
|
+
Request 4cdca12c3321e80f880000e8: Client 4cdca12c3321e80f880000e7 granted access code 5c7ae279de67e3c3e4e76745b419e99bf978c482552b44aefa02920d16be36c0
|
208333
|
+
Access token 91924fe5586489c2bfc2208262d5b324d41521ea5c44f728d073f860fcc6789b granted to client UberClient, identity Batman
|
208334
|
+
HTTP authorization failed invalid_token
|
208335
|
+
Request 4cdca12c3321e80f880000ea: Client UberClient requested code with scope read write
|
208336
|
+
|
208337
|
+
|
208338
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208339
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"a866a43494bba606b7fabf3951570aa07ecf19da801b5467e1dc65bea4efa77d", "client_id"=>"4cdca12c3321e80f880000e9", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208340
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=a866a43494bba606b7fabf3951570aa07ecf19da801b5467e1dc65bea4efa77d&client_id=4cdca12c3321e80f880000e9&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208341
|
+
|
208342
|
+
|
208343
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208344
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000ea"}
|
208345
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208346
|
+
Request 4cdca12c3321e80f880000ea: Client 4cdca12c3321e80f880000e9 granted access code d1efbd3d7ee06b7d730b641dfa6804ee65a4848d54c820c83834c4ee6bcd0219
|
208347
|
+
Access token 2f8533caaeec087c94c95be0bc1e64d65bbeb17d4d3a5adb33ffcb65b37bf1ea granted to client UberClient, identity Batman
|
208348
|
+
HTTP authorization failed invalid_token
|
208349
|
+
Request 4cdca12c3321e80f880000ec: Client UberClient requested code with scope read write
|
208350
|
+
|
208351
|
+
|
208352
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208353
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"976666e36507f26050c949797f064df872162b3425b94a1a37767993ec716f54", "client_id"=>"4cdca12c3321e80f880000eb", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208354
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=976666e36507f26050c949797f064df872162b3425b94a1a37767993ec716f54&client_id=4cdca12c3321e80f880000eb&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208355
|
+
|
208356
|
+
|
208357
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208358
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000ec"}
|
208359
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208360
|
+
Request 4cdca12c3321e80f880000ec: Client 4cdca12c3321e80f880000eb granted access code 8a5d276d74717de0dc771df83f9dc1d1542e5aee7e24ed1cbb10fca0e3cab1f2
|
208361
|
+
Access token 09ff2efe130384d30bbce5371986ee1b684e41855a76f2e97d0510be22112e1d granted to client UberClient, identity Batman
|
208362
|
+
HTTP authorization failed invalid_token
|
208363
|
+
Request 4cdca12c3321e80f880000ee: Client UberClient requested code with scope read write
|
208364
|
+
|
208365
|
+
|
208366
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208367
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"384ba4f3e0a05ca80beaba9900b325696dccffd7655e6d39cf2f075201553baf", "client_id"=>"4cdca12c3321e80f880000ed", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208368
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=384ba4f3e0a05ca80beaba9900b325696dccffd7655e6d39cf2f075201553baf&client_id=4cdca12c3321e80f880000ed&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208369
|
+
|
208370
|
+
|
208371
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208372
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000ee"}
|
208373
|
+
Completed in 3ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
208374
|
+
Request 4cdca12c3321e80f880000ee: Client 4cdca12c3321e80f880000ed granted access code e4805d76ea6268b529fdd0ba68fa7a4724317d6a47e87aeda37e402d96d9ee43
|
208375
|
+
Access token 1e2642a5b53b2ac3149c06a3863d896398e8ec84ba668f33dc8a0b1283b05621 granted to client UberClient, identity Batman
|
208376
|
+
HTTP authorization failed invalid_token
|
208377
|
+
Request 4cdca12c3321e80f880000f0: Client UberClient requested code with scope read write
|
208378
|
+
|
208379
|
+
|
208380
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208381
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5ba1869105799c408d872350e5ded928adcd1a6c1cbe6f2e3bd51269d5f5377b", "client_id"=>"4cdca12c3321e80f880000ef", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208382
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5ba1869105799c408d872350e5ded928adcd1a6c1cbe6f2e3bd51269d5f5377b&client_id=4cdca12c3321e80f880000ef&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208383
|
+
|
208384
|
+
|
208385
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208386
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000f0"}
|
208387
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208388
|
+
Request 4cdca12c3321e80f880000f0: Client 4cdca12c3321e80f880000ef granted access code 2378834dd2a5b723907ccbc051a1696170614216d8d4e8f18cc0db1a29fc1fd4
|
208389
|
+
Access token 39895734a57eefd773eecd0d1ade36eaa16bab5f1f47137f49387a7b96d28596 granted to client UberClient, identity Batman
|
208390
|
+
HTTP authorization failed invalid_token
|
208391
|
+
Request 4cdca12c3321e80f880000f2: Client UberClient requested code with scope read write
|
208392
|
+
|
208393
|
+
|
208394
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208395
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5fd46b32d0e4fd032abda6c3f7fe652a2a2efb6e12e59e9c9dd5e6a111baec7d", "client_id"=>"4cdca12c3321e80f880000f1", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208396
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5fd46b32d0e4fd032abda6c3f7fe652a2a2efb6e12e59e9c9dd5e6a111baec7d&client_id=4cdca12c3321e80f880000f1&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208397
|
+
|
208398
|
+
|
208399
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208400
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000f2"}
|
208401
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208402
|
+
Request 4cdca12c3321e80f880000f2: Client 4cdca12c3321e80f880000f1 granted access code dc6241554875fdd5fc68825852e74e23de43dfe44b085854c2337135ca0686c0
|
208403
|
+
Access token cb1d42a9bf956fd4e98ea7ec74d9a820294a549d2573e8805673071648941961 granted to client UberClient, identity Batman
|
208404
|
+
HTTP authorization failed invalid_token
|
208405
|
+
Request 4cdca12c3321e80f880000f4: Client UberClient requested code with scope read write
|
208406
|
+
|
208407
|
+
|
208408
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208409
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"859d663b0b8d498d9bbb2e7b7622f8baf018c9b071f7fd212b5a848b01cd3e0c", "client_id"=>"4cdca12c3321e80f880000f3", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208410
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=859d663b0b8d498d9bbb2e7b7622f8baf018c9b071f7fd212b5a848b01cd3e0c&client_id=4cdca12c3321e80f880000f3&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208411
|
+
|
208412
|
+
|
208413
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208414
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000f4"}
|
208415
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208416
|
+
Request 4cdca12c3321e80f880000f4: Client 4cdca12c3321e80f880000f3 granted access code c1a8f02d69d326538be69d6cc983de648d601a02d40e20c9ae9c62ae026c8585
|
208417
|
+
Access token 5b93872c5d5c67e254eb723b851e6b534194705c56d94bc3e94d8ca390ee6885 granted to client UberClient, identity Batman
|
208418
|
+
HTTP authorization failed invalid_token
|
208419
|
+
Request 4cdca12c3321e80f880000f6: Client UberClient requested code with scope read write
|
208420
|
+
|
208421
|
+
|
208422
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208423
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"7a96db983dbf990499b9339b4c2cc44bc89db9ee25a4af94a81c419c897e6650", "client_id"=>"4cdca12c3321e80f880000f5", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208424
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=7a96db983dbf990499b9339b4c2cc44bc89db9ee25a4af94a81c419c897e6650&client_id=4cdca12c3321e80f880000f5&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208425
|
+
|
208426
|
+
|
208427
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208428
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000f6"}
|
208429
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208430
|
+
Request 4cdca12c3321e80f880000f6: Client 4cdca12c3321e80f880000f5 granted access code d3bd2f6e73295ba7b0c58495c238accd67cd89d5c2aca6da0d6bd88378527583
|
208431
|
+
Access token 8ab635c74e66cd421bcb20f50544f547b5e28bd1c57360470f5dfef36e0e2abe granted to client UberClient, identity Batman
|
208432
|
+
Authorized Batman
|
208433
|
+
|
208434
|
+
|
208435
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208436
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
208437
|
+
Request 4cdca12c3321e80f880000f8: Client UberClient requested code with scope read write
|
208438
|
+
|
208439
|
+
|
208440
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208441
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"abff6b6116f182c945e5937e3e41971fc6e26a67bb666d1d2dff95d514123d35", "client_id"=>"4cdca12c3321e80f880000f7", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208442
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=abff6b6116f182c945e5937e3e41971fc6e26a67bb666d1d2dff95d514123d35&client_id=4cdca12c3321e80f880000f7&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208443
|
+
|
208444
|
+
|
208445
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208446
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000f8"}
|
208447
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208448
|
+
Request 4cdca12c3321e80f880000f8: Client 4cdca12c3321e80f880000f7 granted access code ad7bbc9db4d3baf7adf34f2291cbb1ec4c33af503cd2f3092505b2a55cf25f3a
|
208449
|
+
Access token 64dbf50b414bfbd90e02d0a798a0256a05fd1eb6b29a8a1f1eb4ff7b06aa21e0 granted to client UberClient, identity Batman
|
208450
|
+
Authorized Batman
|
208451
|
+
|
208452
|
+
|
208453
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208454
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
208455
|
+
Request 4cdca12c3321e80f880000fa: Client UberClient requested code with scope read write
|
208456
|
+
|
208457
|
+
|
208458
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208459
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ca49457c272e383cfd6f3358af04b6cd51a33537a055e7c122aa577ae410a2aa", "client_id"=>"4cdca12c3321e80f880000f9", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208460
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ca49457c272e383cfd6f3358af04b6cd51a33537a055e7c122aa577ae410a2aa&client_id=4cdca12c3321e80f880000f9&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208461
|
+
|
208462
|
+
|
208463
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208464
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000fa"}
|
208465
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208466
|
+
Request 4cdca12c3321e80f880000fa: Client 4cdca12c3321e80f880000f9 granted access code 48ee9cd288ecba3d6aefe6c7d7ee1c47edff9d858ca5d6aee20e59d94899fd05
|
208467
|
+
Access token 139d25f77fd337b79c08817168cc0fa31b36c36b3257c21d95221205f9a955bb granted to client UberClient, identity Batman
|
208468
|
+
|
208469
|
+
|
208470
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208471
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208472
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
208473
|
+
Request 4cdca12c3321e80f880000fc: Client UberClient requested code with scope read write
|
208474
|
+
|
208475
|
+
|
208476
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208477
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"adffe2481d0e2a8bcef52372c53fb129df49d96e2fec3019b04387ddad993740", "client_id"=>"4cdca12c3321e80f880000fb", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208478
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=adffe2481d0e2a8bcef52372c53fb129df49d96e2fec3019b04387ddad993740&client_id=4cdca12c3321e80f880000fb&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208479
|
+
|
208480
|
+
|
208481
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208482
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000fc"}
|
208483
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208484
|
+
Request 4cdca12c3321e80f880000fc: Client 4cdca12c3321e80f880000fb granted access code c1ef21273b7466957193ca15cfbd27e3cbc221d0991d96c9bfd2e9e33d48354c
|
208485
|
+
Access token 6bea5ad71250b79890b850721c5334ed8368f447f1030adb98ce31a3ecde71c6 granted to client UberClient, identity Batman
|
208486
|
+
|
208487
|
+
|
208488
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208489
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208490
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
208491
|
+
Request 4cdca12c3321e80f880000fe: Client UberClient requested code with scope read write
|
208492
|
+
|
208493
|
+
|
208494
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208495
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"a0140db6c2fc3f51a61d6d82c60b93616ad4b49d917a62ed1dd7708771ac2413", "client_id"=>"4cdca12c3321e80f880000fd", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208496
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=a0140db6c2fc3f51a61d6d82c60b93616ad4b49d917a62ed1dd7708771ac2413&client_id=4cdca12c3321e80f880000fd&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208497
|
+
|
208498
|
+
|
208499
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208500
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f880000fe"}
|
208501
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208502
|
+
Request 4cdca12c3321e80f880000fe: Client 4cdca12c3321e80f880000fd granted access code 2bc4658ca8085a5b2797ac6267df2b0fb6f01a4ab79cd850f4f6330c62ae1242
|
208503
|
+
Access token f24e6c883b02e1587733966c5903e7554b77f7d3cc94973e5de9907dbe4707dd granted to client UberClient, identity Batman
|
208504
|
+
|
208505
|
+
|
208506
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208507
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208508
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
208509
|
+
Request 4cdca12c3321e80f88000100: Client UberClient requested code with scope read write
|
208510
|
+
|
208511
|
+
|
208512
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:36) [GET]
|
208513
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f9d13ad1052c55f144213ae079d717541aaa8e0bf3a765b464f2881df2fdd374", "client_id"=>"4cdca12c3321e80f880000ff", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208514
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f9d13ad1052c55f144213ae079d717541aaa8e0bf3a765b464f2881df2fdd374&client_id=4cdca12c3321e80f880000ff&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208515
|
+
|
208516
|
+
|
208517
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:36) [POST]
|
208518
|
+
Parameters: {"authorization"=>"4cdca12c3321e80f88000100"}
|
208519
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208520
|
+
Request 4cdca12c3321e80f88000100: Client 4cdca12c3321e80f880000ff granted access code 52c8f87c36237067351b5759803a1b25eede7d208e02b1fca704946c6ad23bce
|
208521
|
+
Access token 565625cac2c34f4c20eecddf20af6f42c8e068acb35c9fd42fbb1d24ee2706d7 granted to client UberClient, identity Batman
|
208522
|
+
|
208523
|
+
|
208524
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208525
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208526
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private]
|
208527
|
+
Request 4cdca12d3321e80f88000102: Client UberClient requested code with scope read write
|
208528
|
+
|
208529
|
+
|
208530
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208531
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"5b02646c4873dfae4acbcaa3c23cccfc9f107e60f1274c8eb5c355f681eef777", "client_id"=>"4cdca12d3321e80f88000101", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208532
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=5b02646c4873dfae4acbcaa3c23cccfc9f107e60f1274c8eb5c355f681eef777&client_id=4cdca12d3321e80f88000101&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208533
|
+
|
208534
|
+
|
208535
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208536
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000102"}
|
208537
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208538
|
+
Request 4cdca12d3321e80f88000102: Client 4cdca12d3321e80f88000101 granted access code bbc1acf2f74bb468dcfbf62c45396a101302fe9a64963b22cba0808dbc2bfdd3
|
208539
|
+
Access token a94c0783c71bb157e6dc8b58b6713d658cb19dc5d82cbae1aa57a02fd3f633b5 granted to client UberClient, identity Batman
|
208540
|
+
|
208541
|
+
|
208542
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208543
|
+
Parameters: {"oauth_token"=>"a94c0783c71bb157e6dc8b58b6713d658cb19dc5d82cbae1aa57a02fd3f633b5"}
|
208544
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208545
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=a94c0783c71bb157e6dc8b58b6713d658cb19dc5d82cbae1aa57a02fd3f633b5]
|
208546
|
+
Request 4cdca12d3321e80f88000104: Client UberClient requested code with scope read write
|
208547
|
+
|
208548
|
+
|
208549
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208550
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6268e83b0c34eedbec5c4ba05c4202ea1e70e07450d8230c0dac14710687bea9", "client_id"=>"4cdca12d3321e80f88000103", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208551
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6268e83b0c34eedbec5c4ba05c4202ea1e70e07450d8230c0dac14710687bea9&client_id=4cdca12d3321e80f88000103&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208552
|
+
|
208553
|
+
|
208554
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208555
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000104"}
|
208556
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208557
|
+
Request 4cdca12d3321e80f88000104: Client 4cdca12d3321e80f88000103 granted access code 9521d1bc368290194b0b7130da04ef37801660b85f7207003b28122c5962925a
|
208558
|
+
Access token da198d957337057968370992131e620f6826eb12764a9dd97b12e9b6c833c056 granted to client UberClient, identity Batman
|
208559
|
+
|
208560
|
+
|
208561
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208562
|
+
Parameters: {"oauth_token"=>"da198d957337057968370992131e620f6826eb12764a9dd97b12e9b6c833c056"}
|
208563
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208564
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=da198d957337057968370992131e620f6826eb12764a9dd97b12e9b6c833c056]
|
208565
|
+
Request 4cdca12d3321e80f88000106: Client UberClient requested code with scope read write
|
208566
|
+
|
208567
|
+
|
208568
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208569
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"1680bc0d059277805fdf96d9d78a83b966e4ae739681e31e280888b03bb32980", "client_id"=>"4cdca12d3321e80f88000105", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208570
|
+
Completed in 3ms (View: 2 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=1680bc0d059277805fdf96d9d78a83b966e4ae739681e31e280888b03bb32980&client_id=4cdca12d3321e80f88000105&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208571
|
+
|
208572
|
+
|
208573
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208574
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000106"}
|
208575
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208576
|
+
Request 4cdca12d3321e80f88000106: Client 4cdca12d3321e80f88000105 granted access code 1fc834e5cecd4ec3221052d87785d08969384f76b5529910e349fb93a83abe84
|
208577
|
+
Access token e12ece73a019d6a1a94b1ae99590690ef577d67aa964271a839c2950941cc11b granted to client UberClient, identity Batman
|
208578
|
+
|
208579
|
+
|
208580
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208581
|
+
Parameters: {"oauth_token"=>"e12ece73a019d6a1a94b1ae99590690ef577d67aa964271a839c2950941cc11b"}
|
208582
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208583
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=e12ece73a019d6a1a94b1ae99590690ef577d67aa964271a839c2950941cc11b]
|
208584
|
+
Request 4cdca12d3321e80f88000108: Client UberClient requested code with scope read write
|
208585
|
+
|
208586
|
+
|
208587
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208588
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"7f643545edd564c7237028020b6b21108d0ac05ff2c952684e40f7ea2771bcec", "client_id"=>"4cdca12d3321e80f88000107", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208589
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=7f643545edd564c7237028020b6b21108d0ac05ff2c952684e40f7ea2771bcec&client_id=4cdca12d3321e80f88000107&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208590
|
+
|
208591
|
+
|
208592
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208593
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000108"}
|
208594
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208595
|
+
Request 4cdca12d3321e80f88000108: Client 4cdca12d3321e80f88000107 granted access code 585f2a17ade575b8b2e583e183c50e9bc1861c91feb2b063a49ac0dca555e7d3
|
208596
|
+
Access token 72e418452d15d2684a53d56b339beaad1f39ad330c0f402c6732af54f408fdcf granted to client UberClient, identity Batman
|
208597
|
+
|
208598
|
+
|
208599
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208600
|
+
Parameters: {"oauth_token"=>"72e418452d15d2684a53d56b339beaad1f39ad330c0f402c6732af54f408fdcf"}
|
208601
|
+
Filter chain halted as [#<Proc:0x0000000101fd7b70@/Users/assaf/projects/rack-oauth2-server/lib/rack/oauth2/rails.rb:68>] rendered_or_redirected.
|
208602
|
+
Completed in 0ms (View: 0 | 401 Unauthorized [http://example.org/private?oauth_token=72e418452d15d2684a53d56b339beaad1f39ad330c0f402c6732af54f408fdcf]
|
208603
|
+
Request 4cdca12d3321e80f8800010a: Client UberClient requested code with scope read write
|
208604
|
+
|
208605
|
+
|
208606
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208607
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"09f2f3eb2d9fc23d5659346408b04d7ec215e9dafb81757a011d6276758b51e9", "client_id"=>"4cdca12d3321e80f88000109", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208608
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=09f2f3eb2d9fc23d5659346408b04d7ec215e9dafb81757a011d6276758b51e9&client_id=4cdca12d3321e80f88000109&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208609
|
+
|
208610
|
+
|
208611
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208612
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800010a"}
|
208613
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208614
|
+
Request 4cdca12d3321e80f8800010a: Client 4cdca12d3321e80f88000109 granted access code 28d834b2ac9848d8dd958c0f57ef746581e71978e9bedb0b054e733c054ae825
|
208615
|
+
Access token 147d813cec7e0363d0eddb9ed2b63ea1b6339d1d21c90051cecec45f4144ede0 granted to client UberClient, identity Batman
|
208616
|
+
HTTP authorization failed invalid_token
|
208617
|
+
Request 4cdca12d3321e80f8800010c: Client UberClient requested code with scope read write
|
208618
|
+
|
208619
|
+
|
208620
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208621
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b4702b633f1f5e3c41b341d93a79a7e7e0daae50967fec3f8bb872e49f870b42", "client_id"=>"4cdca12d3321e80f8800010b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208622
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b4702b633f1f5e3c41b341d93a79a7e7e0daae50967fec3f8bb872e49f870b42&client_id=4cdca12d3321e80f8800010b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208623
|
+
|
208624
|
+
|
208625
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208626
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800010c"}
|
208627
|
+
Completed in 2ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
208628
|
+
Request 4cdca12d3321e80f8800010c: Client 4cdca12d3321e80f8800010b granted access code 62e075a08baa8072018881ab469c837f9400446f56e4ca24c8d0d61774500d4c
|
208629
|
+
Access token dcd702d63d970a18bb12f4f94fdad9f730f34400652af3fa8d303cbbeb0c3f61 granted to client UberClient, identity Batman
|
208630
|
+
HTTP authorization failed invalid_token
|
208631
|
+
Request 4cdca12d3321e80f8800010e: Client UberClient requested code with scope read write
|
208632
|
+
|
208633
|
+
|
208634
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208635
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"87d25e5f646ec6425e6c2173c123fcd0146eb1a6d6f007f96b34df97e580355c", "client_id"=>"4cdca12d3321e80f8800010d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208636
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=87d25e5f646ec6425e6c2173c123fcd0146eb1a6d6f007f96b34df97e580355c&client_id=4cdca12d3321e80f8800010d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208637
|
+
|
208638
|
+
|
208639
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208640
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800010e"}
|
208641
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208642
|
+
Request 4cdca12d3321e80f8800010e: Client 4cdca12d3321e80f8800010d granted access code 266c2fbdbf6d94eac0ada88116d1e504a415bbf6b9364773d2b41574d79c18d7
|
208643
|
+
Access token 1aa301b9a0684f7d0b204843e4022618d853b00bcdf4954737dabf733f8e8fb9 granted to client UberClient, identity Batman
|
208644
|
+
HTTP authorization failed invalid_token
|
208645
|
+
Request 4cdca12d3321e80f88000110: Client UberClient requested code with scope read write
|
208646
|
+
|
208647
|
+
|
208648
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208649
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"cef84b4857bda2b1866cb3e8a5aed7c108e98c1d431a223cb49a4e0855c6a58d", "client_id"=>"4cdca12d3321e80f8800010f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208650
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=cef84b4857bda2b1866cb3e8a5aed7c108e98c1d431a223cb49a4e0855c6a58d&client_id=4cdca12d3321e80f8800010f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208651
|
+
|
208652
|
+
|
208653
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208654
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000110"}
|
208655
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208656
|
+
Request 4cdca12d3321e80f88000110: Client 4cdca12d3321e80f8800010f granted access code 1b4dff494a6d0159aad4f8da69b075971711b5948f3ac6e52ed5a9a24f4ebc15
|
208657
|
+
Access token d967aaaa84b962d02bc60a4f67a2927c766a2aecc4e08e22e9e66dbf76a4eb97 granted to client UberClient, identity Batman
|
208658
|
+
HTTP authorization failed invalid_token
|
208659
|
+
Request 4cdca12d3321e80f88000112: Client UberClient requested code with scope read write
|
208660
|
+
|
208661
|
+
|
208662
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208663
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"19d814a0349ef9b171e314f89d01c7803dc5b814ab46a4aaedfedc40600d9419", "client_id"=>"4cdca12d3321e80f88000111", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208664
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=19d814a0349ef9b171e314f89d01c7803dc5b814ab46a4aaedfedc40600d9419&client_id=4cdca12d3321e80f88000111&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208665
|
+
|
208666
|
+
|
208667
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208668
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000112"}
|
208669
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208670
|
+
Request 4cdca12d3321e80f88000112: Client 4cdca12d3321e80f88000111 granted access code 72f1885dff9d45fea0aa4cdf7c229cb3ee4f95160e9c87f9884538018d6dc09a
|
208671
|
+
Access token d4d9daaf6d878819eae7c4c796be4a68857eca265bac2c63ee51170f80f199dd granted to client UberClient, identity Batman
|
208672
|
+
Authorized Batman
|
208673
|
+
|
208674
|
+
|
208675
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208676
|
+
Parameters: {"oauth_token"=>"d4d9daaf6d878819eae7c4c796be4a68857eca265bac2c63ee51170f80f199dd"}
|
208677
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private?oauth_token=d4d9daaf6d878819eae7c4c796be4a68857eca265bac2c63ee51170f80f199dd]
|
208678
|
+
Request 4cdca12d3321e80f88000114: Client UberClient requested code with scope read write
|
208679
|
+
|
208680
|
+
|
208681
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208682
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"4924893821d41a4a257362b9f4c0a173f43844141776fe6d56f1925b9acb217e", "client_id"=>"4cdca12d3321e80f88000113", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208683
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=4924893821d41a4a257362b9f4c0a173f43844141776fe6d56f1925b9acb217e&client_id=4cdca12d3321e80f88000113&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208684
|
+
|
208685
|
+
|
208686
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208687
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000114"}
|
208688
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208689
|
+
Request 4cdca12d3321e80f88000114: Client 4cdca12d3321e80f88000113 granted access code ef5e61a16656e37f838009f54b2c6a8dd5d41c3ed355f1c074ce906efcfce6fe
|
208690
|
+
Access token 461185ad38ca7d193e6d585087b965c13768b72c9f8e31caf9d4645a7f22292f granted to client UberClient, identity Batman
|
208691
|
+
Authorized Batman
|
208692
|
+
|
208693
|
+
|
208694
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208695
|
+
Parameters: {"oauth_token"=>"461185ad38ca7d193e6d585087b965c13768b72c9f8e31caf9d4645a7f22292f"}
|
208696
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private?oauth_token=461185ad38ca7d193e6d585087b965c13768b72c9f8e31caf9d4645a7f22292f]
|
208697
|
+
Request 4cdca12d3321e80f88000116: Client UberClient requested code with scope read write
|
208698
|
+
|
208699
|
+
|
208700
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208701
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d08fb7cf0059763856ea3cd9c29007cfc83ad32397da5a1029c0a08b5af373cf", "client_id"=>"4cdca12d3321e80f88000115", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208702
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d08fb7cf0059763856ea3cd9c29007cfc83ad32397da5a1029c0a08b5af373cf&client_id=4cdca12d3321e80f88000115&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208703
|
+
|
208704
|
+
|
208705
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208706
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000116"}
|
208707
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208708
|
+
Request 4cdca12d3321e80f88000116: Client 4cdca12d3321e80f88000115 granted access code 16e69af149bbe50c5e6f7e42e9fb58bd1a51bcacc120d9c2e17f7668a5a71703
|
208709
|
+
Access token be1d2b124dcfdfc97e51db05f4cf13d5f3c9f5902bbfc4662cb60d0e8a0abc1a granted to client UberClient, identity Batman
|
208710
|
+
|
208711
|
+
|
208712
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208713
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208714
|
+
Request 4cdca12d3321e80f88000118: Client UberClient requested code with scope read write
|
208715
|
+
|
208716
|
+
|
208717
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208718
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"53889e5338744d40167e4a80d3a033cc51193bb7c51173de5e41629083f00158", "client_id"=>"4cdca12d3321e80f88000117", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208719
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=53889e5338744d40167e4a80d3a033cc51193bb7c51173de5e41629083f00158&client_id=4cdca12d3321e80f88000117&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208720
|
+
|
208721
|
+
|
208722
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208723
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000118"}
|
208724
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208725
|
+
Request 4cdca12d3321e80f88000118: Client 4cdca12d3321e80f88000117 granted access code b21727709d10989af646bbd5c47afca443053d2f61736702c33d9b9fd3cf3442
|
208726
|
+
Access token d704de80e389835d7f60cd670178b38d697e2bef8bc4625a442b6d2377faeee7 granted to client UberClient, identity Batman
|
208727
|
+
|
208728
|
+
|
208729
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208730
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208731
|
+
Request 4cdca12d3321e80f8800011a: Client UberClient requested code with scope read write
|
208732
|
+
|
208733
|
+
|
208734
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208735
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"52311e97172f37dad2258a2b0a04c06dcaaaf7289fd4496495945c858c3ad151", "client_id"=>"4cdca12d3321e80f88000119", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208736
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=52311e97172f37dad2258a2b0a04c06dcaaaf7289fd4496495945c858c3ad151&client_id=4cdca12d3321e80f88000119&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208737
|
+
|
208738
|
+
|
208739
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208740
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800011a"}
|
208741
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208742
|
+
Request 4cdca12d3321e80f8800011a: Client 4cdca12d3321e80f88000119 granted access code 62e9e435a8638f5ebdc086fded521db0f435fdb20b42f48c9e435ab7fd63f316
|
208743
|
+
Access token 32250b0e5447b89b73a5bac230ca3f0188d0c39e0af38ea10c8c868213d221d1 granted to client UberClient, identity Batman
|
208744
|
+
Authorized Batman
|
208745
|
+
|
208746
|
+
|
208747
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208748
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208749
|
+
Request 4cdca12d3321e80f8800011c: Client UberClient requested code with scope read write
|
208750
|
+
|
208751
|
+
|
208752
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208753
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"f3a43bc6b4735a902a0ee4a1e56e026d81a30d64c44e333c231315bc378228d1", "client_id"=>"4cdca12d3321e80f8800011b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208754
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=f3a43bc6b4735a902a0ee4a1e56e026d81a30d64c44e333c231315bc378228d1&client_id=4cdca12d3321e80f8800011b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208755
|
+
|
208756
|
+
|
208757
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208758
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800011c"}
|
208759
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208760
|
+
Request 4cdca12d3321e80f8800011c: Client 4cdca12d3321e80f8800011b granted access code a0f15eab9c99df50943341da17b420c169a7fbb17097844297d1b522ea9f9100
|
208761
|
+
Access token 17a5170f9f4204d8bf126bf59c608bf6628736297a6ea1c9293f5bfddf765649 granted to client UberClient, identity Batman
|
208762
|
+
Authorized Batman
|
208763
|
+
|
208764
|
+
|
208765
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208766
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208767
|
+
Request 4cdca12d3321e80f8800011e: Client UberClient requested code with scope read write
|
208768
|
+
|
208769
|
+
|
208770
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208771
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"346e176bdb23ac72ff22b7e7e72245cd65cbf2f53744befa1f305ccc5cc8da78", "client_id"=>"4cdca12d3321e80f8800011d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208772
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=346e176bdb23ac72ff22b7e7e72245cd65cbf2f53744befa1f305ccc5cc8da78&client_id=4cdca12d3321e80f8800011d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208773
|
+
|
208774
|
+
|
208775
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208776
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800011e"}
|
208777
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208778
|
+
Request 4cdca12d3321e80f8800011e: Client 4cdca12d3321e80f8800011d granted access code 9173872b4bf09c9d1064a840329d9cd7fb875ea135b1e44fc9f44ac4ca77eb77
|
208779
|
+
Access token 794eedac9e0a2f4200427ae4e6690a03c29deb745ba89547660d7c369efc90e5 granted to client UberClient, identity Batman
|
208780
|
+
Authorized Batman
|
208781
|
+
|
208782
|
+
|
208783
|
+
Processing ApiController#user (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208784
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/user]
|
208785
|
+
Request 4cdca12d3321e80f88000120: Client UberClient requested code with scope read write
|
208786
|
+
|
208787
|
+
|
208788
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208789
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b7ee0fed6bfa41570ba548f662d3f5483d8f4bf540cc064e682300f639e1d059", "client_id"=>"4cdca12d3321e80f8800011f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208790
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b7ee0fed6bfa41570ba548f662d3f5483d8f4bf540cc064e682300f639e1d059&client_id=4cdca12d3321e80f8800011f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208791
|
+
|
208792
|
+
|
208793
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208794
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000120"}
|
208795
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208796
|
+
Request 4cdca12d3321e80f88000120: Client 4cdca12d3321e80f8800011f granted access code fd50602b9301a5b26ab3518345d822d8ced4b72fd90cde1fd3c19635e84107c0
|
208797
|
+
Access token ccebcf1bc66e19aa0a149c8a8d9fa7a066d2481c98e1ccf2686ad9101e1838cc granted to client UberClient, identity Batman
|
208798
|
+
|
208799
|
+
|
208800
|
+
Processing ApiController#user (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208801
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/user]
|
208802
|
+
Request 4cdca12d3321e80f88000122: Client UberClient requested code with scope read write
|
208803
|
+
|
208804
|
+
|
208805
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208806
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"2cdfce5daa7d26c491b1d12336857402ea93bd7e3feca779f6f34f094fd9d82e", "client_id"=>"4cdca12d3321e80f88000121", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208807
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=2cdfce5daa7d26c491b1d12336857402ea93bd7e3feca779f6f34f094fd9d82e&client_id=4cdca12d3321e80f88000121&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208808
|
+
|
208809
|
+
|
208810
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208811
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000122"}
|
208812
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208813
|
+
Request 4cdca12d3321e80f88000122: Client 4cdca12d3321e80f88000121 granted access code e20f83571eacc433538972d0835657188ea5bfe11dd71dccc3edab6677b7f36c
|
208814
|
+
Access token 4a98fce874c26a3f427480fa2375c81f13a4e3e277102229bfaf0e5a5265dfb0 granted to client UberClient, identity Batman
|
208815
|
+
|
208816
|
+
|
208817
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208818
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208819
|
+
Request 4cdca12d3321e80f88000124: Client UberClient requested code with scope read write
|
208820
|
+
|
208821
|
+
|
208822
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208823
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"2270b7f596361f3b2a08a7a82018c0080a4afce61faa2ba19d6bcc180b84ee67", "client_id"=>"4cdca12d3321e80f88000123", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208824
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=2270b7f596361f3b2a08a7a82018c0080a4afce61faa2ba19d6bcc180b84ee67&client_id=4cdca12d3321e80f88000123&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208825
|
+
|
208826
|
+
|
208827
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208828
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000124"}
|
208829
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208830
|
+
Request 4cdca12d3321e80f88000124: Client 4cdca12d3321e80f88000123 granted access code c65ee621fac0047d4b0d849ad6440a8e571fda1d27721a826081017a3c20cc26
|
208831
|
+
Access token 958eb701554f8369bdd0ef023d6ffb3e0fb9a07262f86138aee444cabb5e6a38 granted to client UberClient, identity Batman
|
208832
|
+
|
208833
|
+
|
208834
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208835
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208836
|
+
Request 4cdca12d3321e80f88000126: Client UberClient requested code with scope read write
|
208837
|
+
|
208838
|
+
|
208839
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208840
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"6d0714c29d3b416a5148cdbc00d15ac1ef9d7b9914498d7bf568bce934a4cb3d", "client_id"=>"4cdca12d3321e80f88000125", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208841
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=6d0714c29d3b416a5148cdbc00d15ac1ef9d7b9914498d7bf568bce934a4cb3d&client_id=4cdca12d3321e80f88000125&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208842
|
+
|
208843
|
+
|
208844
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208845
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000126"}
|
208846
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208847
|
+
Request 4cdca12d3321e80f88000126: Client 4cdca12d3321e80f88000125 granted access code d940173998a55febfa62020e9a285d6f3a8156634ca02d6900156926914ae894
|
208848
|
+
Access token a724827cdfbcf20345b0fa94a954e4132eb6c4fe8708123291fd0435dbf945e9 granted to client UberClient, identity Batman
|
208849
|
+
|
208850
|
+
|
208851
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208852
|
+
Completed in 0ms (View: 0 | 200 OK [http://wrong.org/public]
|
208853
|
+
Request 4cdca12d3321e80f88000128: Client UberClient requested code with scope read write
|
208854
|
+
|
208855
|
+
|
208856
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208857
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ff9ce3bf9b673c67a5081d0ddcee86e0953d29213d68b124c70f3c59b24d8a51", "client_id"=>"4cdca12d3321e80f88000127", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208858
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ff9ce3bf9b673c67a5081d0ddcee86e0953d29213d68b124c70f3c59b24d8a51&client_id=4cdca12d3321e80f88000127&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208859
|
+
|
208860
|
+
|
208861
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208862
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000128"}
|
208863
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208864
|
+
Request 4cdca12d3321e80f88000128: Client 4cdca12d3321e80f88000127 granted access code 3f8682604ce2919244bcca179ef9ff4be90755669db1c7882ec2ab1641e4d6d1
|
208865
|
+
Access token ba3d2146881233a29ac8776b5d8915f123e33cd9f894950adbd290e2a0ee0226 granted to client UberClient, identity Batman
|
208866
|
+
|
208867
|
+
|
208868
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208869
|
+
Completed in 0ms (View: 0 | 200 OK [http://wrong.org/public]
|
208870
|
+
Request 4cdca12d3321e80f8800012a: Client UberClient requested code with scope read write
|
208871
|
+
|
208872
|
+
|
208873
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208874
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b9c9b8d6dff841c62c5842657b413c8ad30a8ba3421881067df685302c6f4b10", "client_id"=>"4cdca12d3321e80f88000129", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208875
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b9c9b8d6dff841c62c5842657b413c8ad30a8ba3421881067df685302c6f4b10&client_id=4cdca12d3321e80f88000129&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208876
|
+
|
208877
|
+
|
208878
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208879
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800012a"}
|
208880
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208881
|
+
Request 4cdca12d3321e80f8800012a: Client 4cdca12d3321e80f88000129 granted access code c971c2ed18996cbc5ed49aa2934d9b3abf417846f0a4b919281ef15381a95c50
|
208882
|
+
Access token 4d0a92db75a6063b73300a92d84ec73f361d48dab29cfd2bdf863be551e03f1a granted to client UberClient, identity Batman
|
208883
|
+
Authorized Batman
|
208884
|
+
|
208885
|
+
|
208886
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208887
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
208888
|
+
Request 4cdca12d3321e80f8800012c: Client UberClient requested code with scope read write
|
208889
|
+
|
208890
|
+
|
208891
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208892
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"4d5b42913c15fb3c9825eac200013460a19d7088ddc5206a3eb4ceaea300034e", "client_id"=>"4cdca12d3321e80f8800012b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208893
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=4d5b42913c15fb3c9825eac200013460a19d7088ddc5206a3eb4ceaea300034e&client_id=4cdca12d3321e80f8800012b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208894
|
+
|
208895
|
+
|
208896
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208897
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800012c"}
|
208898
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208899
|
+
Request 4cdca12d3321e80f8800012c: Client 4cdca12d3321e80f8800012b granted access code 0f85f9d5463a521dcb120712228987d52790c3757061dfbe7154842744bf0b74
|
208900
|
+
Access token fbeab0c6e0861acf742aebd22633846ca6fcee538afe30b248e67e8e47da4ae5 granted to client UberClient, identity Batman
|
208901
|
+
Authorized Batman
|
208902
|
+
|
208903
|
+
|
208904
|
+
Processing ApiController#private (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208905
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/private]
|
208906
|
+
Request 4cdca12d3321e80f8800012e: Client UberClient requested code with scope read write
|
208907
|
+
|
208908
|
+
|
208909
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208910
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"b6298d0765f627b32be5a4df1ceefab45de19726e1d8cd9c134a8a5625cefe3c", "client_id"=>"4cdca12d3321e80f8800012d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208911
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=b6298d0765f627b32be5a4df1ceefab45de19726e1d8cd9c134a8a5625cefe3c&client_id=4cdca12d3321e80f8800012d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208912
|
+
|
208913
|
+
|
208914
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208915
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f8800012e"}
|
208916
|
+
Completed in 3ms (View: 1 | 200 OK [http://example.org/oauth/grant]
|
208917
|
+
Request 4cdca12d3321e80f8800012e: Client 4cdca12d3321e80f8800012d granted access code a3882d8765a4c83df869aeb9c813701e006fb1b4bd2949fe9c89d1a3e1cf9608
|
208918
|
+
Access token e47e86a639812ac86b0c2f7ae5ce55bfddad6fcbfa07bedf5257fa93d523a356 granted to client UberClient, identity Batman
|
208919
|
+
|
208920
|
+
|
208921
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208922
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208923
|
+
Request 4cdca12d3321e80f88000130: Client UberClient requested code with scope read write
|
208924
|
+
|
208925
|
+
|
208926
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208927
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"709fd8baea2afb591b4992131e46ea8bd0e856bcf9193bcc65ef075d44b22866", "client_id"=>"4cdca12d3321e80f8800012f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208928
|
+
Completed in 3ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=709fd8baea2afb591b4992131e46ea8bd0e856bcf9193bcc65ef075d44b22866&client_id=4cdca12d3321e80f8800012f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208929
|
+
|
208930
|
+
|
208931
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:37) [POST]
|
208932
|
+
Parameters: {"authorization"=>"4cdca12d3321e80f88000130"}
|
208933
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
208934
|
+
Request 4cdca12d3321e80f88000130: Client 4cdca12d3321e80f8800012f granted access code 0716a10d3ea36640731f8aa5413f1951df6406919358f408e2cb2ed4800e2813
|
208935
|
+
Access token 65ef419fd0c8ada75b7de713be05b75117a4f87669ac7bc13b83106ca4a4ce74 granted to client UberClient, identity Batman
|
208936
|
+
|
208937
|
+
|
208938
|
+
Processing ApiController#public (for 127.0.0.1 at 2010-11-11 18:06:37) [GET]
|
208939
|
+
Completed in 0ms (View: 0 | 200 OK [http://example.org/public]
|
208940
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
208941
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
208942
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
208943
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
208944
|
+
Request 4cdca12e3321e80f88000158: Client UberClient requested token with scope read write
|
208945
|
+
|
208946
|
+
|
208947
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
208948
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"e2945c18b170e256184258c82f8ed6e4217cfb70cb458f8103122621ece23132", "client_id"=>"4cdca12e3321e80f88000157", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208949
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=e2945c18b170e256184258c82f8ed6e4217cfb70cb458f8103122621ece23132&client_id=4cdca12e3321e80f88000157&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208950
|
+
|
208951
|
+
|
208952
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
208953
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000158"}
|
208954
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
208955
|
+
Request 4cdca12e3321e80f88000158: Client 4cdca12e3321e80f88000157 denied authorization
|
208956
|
+
Request 4cdca12e3321e80f8800015a: Client UberClient requested token with scope read write
|
208957
|
+
|
208958
|
+
|
208959
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
208960
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"4e6ab741cddf31fa50c27c062581c49dd9df4964275a02c476934102a0e7dee5", "client_id"=>"4cdca12e3321e80f88000159", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208961
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=4e6ab741cddf31fa50c27c062581c49dd9df4964275a02c476934102a0e7dee5&client_id=4cdca12e3321e80f88000159&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208962
|
+
|
208963
|
+
|
208964
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
208965
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f8800015a"}
|
208966
|
+
Completed in 2ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
208967
|
+
Request 4cdca12e3321e80f8800015a: Client 4cdca12e3321e80f88000159 denied authorization
|
208968
|
+
Request 4cdca12e3321e80f8800015c: Client UberClient requested token with scope read write
|
208969
|
+
|
208970
|
+
|
208971
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
208972
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"6363573606293079139ffbe31bd5917e889029735d944a5faf239a44f209f072", "client_id"=>"4cdca12e3321e80f8800015b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208973
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=6363573606293079139ffbe31bd5917e889029735d944a5faf239a44f209f072&client_id=4cdca12e3321e80f8800015b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208974
|
+
|
208975
|
+
|
208976
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
208977
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f8800015c"}
|
208978
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
208979
|
+
Request 4cdca12e3321e80f8800015c: Client 4cdca12e3321e80f8800015b denied authorization
|
208980
|
+
Request 4cdca12e3321e80f8800015e: Client UberClient requested token with scope read write
|
208981
|
+
|
208982
|
+
|
208983
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
208984
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"b72178bc624508c191cc3ab4e873046cf032c0f4a123c15e8045b8c5a288597b", "client_id"=>"4cdca12e3321e80f8800015d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208985
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=b72178bc624508c191cc3ab4e873046cf032c0f4a123c15e8045b8c5a288597b&client_id=4cdca12e3321e80f8800015d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208986
|
+
|
208987
|
+
|
208988
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
208989
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f8800015e"}
|
208990
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
208991
|
+
Request 4cdca12e3321e80f8800015e: Client 4cdca12e3321e80f8800015d denied authorization
|
208992
|
+
Request 4cdca12e3321e80f88000160: Client UberClient requested token with scope read write
|
208993
|
+
|
208994
|
+
|
208995
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
208996
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"89ad9d82544292b3fab894373eb8f83260cbc38c6fdc537d8d87c98cf6199129", "client_id"=>"4cdca12e3321e80f8800015f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
208997
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=89ad9d82544292b3fab894373eb8f83260cbc38c6fdc537d8d87c98cf6199129&client_id=4cdca12e3321e80f8800015f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
208998
|
+
|
208999
|
+
|
209000
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209001
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000160"}
|
209002
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
209003
|
+
Request 4cdca12e3321e80f88000160: Client 4cdca12e3321e80f8800015f denied authorization
|
209004
|
+
Request 4cdca12e3321e80f88000162: Client UberClient requested token with scope read write
|
209005
|
+
|
209006
|
+
|
209007
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209008
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"cc19296b50b5ca752874246fb654ac9f588b9e80f30d2d5a6cfb81bbb2b606b9", "client_id"=>"4cdca12e3321e80f88000161", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209009
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=cc19296b50b5ca752874246fb654ac9f588b9e80f30d2d5a6cfb81bbb2b606b9&client_id=4cdca12e3321e80f88000161&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209010
|
+
|
209011
|
+
|
209012
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209013
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000162"}
|
209014
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209015
|
+
Request 4cdca12e3321e80f88000162: Client 4cdca12e3321e80f88000161 granted access token a844c0b0bd156a8f8834d7a6d51813ce675ae47dc1dccfb4e84b178e714276f3
|
209016
|
+
Request 4cdca12e3321e80f88000164: Client UberClient requested token with scope read write
|
209017
|
+
|
209018
|
+
|
209019
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209020
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"0061dcec93b495d5a8628d6b147fe5c32691c04524a4947624469c4592159bb8", "client_id"=>"4cdca12e3321e80f88000163", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209021
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=0061dcec93b495d5a8628d6b147fe5c32691c04524a4947624469c4592159bb8&client_id=4cdca12e3321e80f88000163&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209022
|
+
|
209023
|
+
|
209024
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209025
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000164"}
|
209026
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209027
|
+
Request 4cdca12e3321e80f88000164: Client 4cdca12e3321e80f88000163 granted access token b2967975ea8670b4874124622ac27a6b20cfcec1c090744fad1b31e757b428d0
|
209028
|
+
Request 4cdca12e3321e80f88000166: Client UberClient requested token with scope read write
|
209029
|
+
|
209030
|
+
|
209031
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209032
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"5712edcb2100562e1f1d3fb3a6757f816ed34d488e11ef754967e1d5170ff4b3", "client_id"=>"4cdca12e3321e80f88000165", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209033
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=5712edcb2100562e1f1d3fb3a6757f816ed34d488e11ef754967e1d5170ff4b3&client_id=4cdca12e3321e80f88000165&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209034
|
+
|
209035
|
+
|
209036
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209037
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000166"}
|
209038
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209039
|
+
Request 4cdca12e3321e80f88000166: Client 4cdca12e3321e80f88000165 granted access token 38a8905effa09d4ab4d520d96e1866364579d2de45acd61f98282e379de85e1a
|
209040
|
+
Request 4cdca12e3321e80f88000168: Client UberClient requested token with scope read write
|
209041
|
+
|
209042
|
+
|
209043
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209044
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"1064b281317518366b9c94bab51c7aa397aef717fb249d6b6510acb1ccacbc65", "client_id"=>"4cdca12e3321e80f88000167", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209045
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=1064b281317518366b9c94bab51c7aa397aef717fb249d6b6510acb1ccacbc65&client_id=4cdca12e3321e80f88000167&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209046
|
+
|
209047
|
+
|
209048
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209049
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000168"}
|
209050
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209051
|
+
Request 4cdca12e3321e80f88000168: Client 4cdca12e3321e80f88000167 granted access token 93339e8cb5cd6b0ba4c17ca29f829d2fa7924260290b04fe2b8d7e34262e01dd
|
209052
|
+
Request 4cdca12e3321e80f8800016a: Client UberClient requested token with scope read write
|
209053
|
+
|
209054
|
+
|
209055
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209056
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"d17a0a5ba5fc343bc55c58d0a0b31b697f04c39a95bb051862584408778a9855", "client_id"=>"4cdca12e3321e80f88000169", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209057
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=d17a0a5ba5fc343bc55c58d0a0b31b697f04c39a95bb051862584408778a9855&client_id=4cdca12e3321e80f88000169&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209058
|
+
|
209059
|
+
|
209060
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209061
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f8800016a"}
|
209062
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209063
|
+
Request 4cdca12e3321e80f8800016a: Client 4cdca12e3321e80f88000169 granted access token e61ecc422d15a64fceb71c25bcf905d4460d563927eaa405c17284acbc2c3010
|
209064
|
+
Request 4cdca12e3321e80f8800016c: Client UberClient requested token with scope read write
|
209065
|
+
|
209066
|
+
|
209067
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209068
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"d297cc1a81fa35261b7411c1d164ded201965f472f5498666edc91642ac43e61", "client_id"=>"4cdca12e3321e80f8800016b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209069
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=d297cc1a81fa35261b7411c1d164ded201965f472f5498666edc91642ac43e61&client_id=4cdca12e3321e80f8800016b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209070
|
+
Request 4cdca12e3321e80f8800016e: Client UberClient requested token with scope read write
|
209071
|
+
|
209072
|
+
|
209073
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209074
|
+
Parameters: {"scope"=>"read write", "response_type"=>"token", "client_secret"=>"8cfe913871f1b5bd4b37fa943aed08e662ed701bea88e5a01c2245288c6c01ae", "client_id"=>"4cdca12e3321e80f8800016d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209075
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=token&client_secret=8cfe913871f1b5bd4b37fa943aed08e662ed701bea88e5a01c2245288c6c01ae&client_id=4cdca12e3321e80f8800016d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209076
|
+
Request 4cdca12e3321e80f88000170: Client UberClient requested code with scope read write
|
209077
|
+
|
209078
|
+
|
209079
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209080
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"8299b5fa8fc7295db8aa6948477dc9d76447290616581b74a827c2ad10223463", "client_id"=>"4cdca12e3321e80f8800016f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209081
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=8299b5fa8fc7295db8aa6948477dc9d76447290616581b74a827c2ad10223463&client_id=4cdca12e3321e80f8800016f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209082
|
+
|
209083
|
+
|
209084
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209085
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000170"}
|
209086
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
209087
|
+
Request 4cdca12e3321e80f88000170: Client 4cdca12e3321e80f8800016f denied authorization
|
209088
|
+
Request 4cdca12e3321e80f88000172: Client UberClient requested code with scope read write
|
209089
|
+
|
209090
|
+
|
209091
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209092
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"0ab729d79b89af1902b441d4fe003b63f1711e05a0e8e2c1eef1cb5ddf8d5730", "client_id"=>"4cdca12e3321e80f88000171", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209093
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=0ab729d79b89af1902b441d4fe003b63f1711e05a0e8e2c1eef1cb5ddf8d5730&client_id=4cdca12e3321e80f88000171&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209094
|
+
|
209095
|
+
|
209096
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209097
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000172"}
|
209098
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
209099
|
+
Request 4cdca12e3321e80f88000172: Client 4cdca12e3321e80f88000171 denied authorization
|
209100
|
+
Request 4cdca12e3321e80f88000174: Client UberClient requested code with scope read write
|
209101
|
+
|
209102
|
+
|
209103
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209104
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"8c12c3033f321e22c8c5008d65b403da7a630de29c46d51b1f4203cd3e74601b", "client_id"=>"4cdca12e3321e80f88000173", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209105
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=8c12c3033f321e22c8c5008d65b403da7a630de29c46d51b1f4203cd3e74601b&client_id=4cdca12e3321e80f88000173&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209106
|
+
|
209107
|
+
|
209108
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209109
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000174"}
|
209110
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
209111
|
+
Request 4cdca12e3321e80f88000174: Client 4cdca12e3321e80f88000173 denied authorization
|
209112
|
+
Request 4cdca12e3321e80f88000176: Client UberClient requested code with scope read write
|
209113
|
+
|
209114
|
+
|
209115
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209116
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"c9e4f0e08134e6f7d1bc21d022d967a8dff4dec10b26c61ccefbe5231cf46766", "client_id"=>"4cdca12e3321e80f88000175", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209117
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=c9e4f0e08134e6f7d1bc21d022d967a8dff4dec10b26c61ccefbe5231cf46766&client_id=4cdca12e3321e80f88000175&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209118
|
+
|
209119
|
+
|
209120
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209121
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000176"}
|
209122
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
209123
|
+
Request 4cdca12e3321e80f88000176: Client 4cdca12e3321e80f88000175 denied authorization
|
209124
|
+
Request 4cdca12e3321e80f88000178: Client UberClient requested code with scope read write
|
209125
|
+
|
209126
|
+
|
209127
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209128
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"91c4905b41074fd014bf4fadbc364055dcd0e8cd886a9ab04aaa67d95121b783", "client_id"=>"4cdca12e3321e80f88000177", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209129
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=91c4905b41074fd014bf4fadbc364055dcd0e8cd886a9ab04aaa67d95121b783&client_id=4cdca12e3321e80f88000177&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209130
|
+
|
209131
|
+
|
209132
|
+
Processing OauthController#deny (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209133
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000178"}
|
209134
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/deny]
|
209135
|
+
Request 4cdca12e3321e80f88000178: Client 4cdca12e3321e80f88000177 denied authorization
|
209136
|
+
Request 4cdca12e3321e80f8800017a: Client UberClient requested code with scope read write
|
209137
|
+
|
209138
|
+
|
209139
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209140
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"a904b83c914430f5667f6410d64fec3cc7438c63d135c6673015e0d9de583896", "client_id"=>"4cdca12e3321e80f88000179", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209141
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=a904b83c914430f5667f6410d64fec3cc7438c63d135c6673015e0d9de583896&client_id=4cdca12e3321e80f88000179&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209142
|
+
|
209143
|
+
|
209144
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209145
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f8800017a"}
|
209146
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209147
|
+
Request 4cdca12e3321e80f8800017a: Client 4cdca12e3321e80f88000179 granted access code 0c0d7148d16cffc9b873887ff60cdf285b29f5b39b333e9080523e6aac8503eb
|
209148
|
+
Request 4cdca12e3321e80f8800017c: Client UberClient requested code with scope read write
|
209149
|
+
|
209150
|
+
|
209151
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209152
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ee05d491022b47ce8a65b48d3a05edcaa0feb44cae6223774b2411fc9df222f4", "client_id"=>"4cdca12e3321e80f8800017b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209153
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ee05d491022b47ce8a65b48d3a05edcaa0feb44cae6223774b2411fc9df222f4&client_id=4cdca12e3321e80f8800017b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209154
|
+
|
209155
|
+
|
209156
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209157
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f8800017c"}
|
209158
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209159
|
+
Request 4cdca12e3321e80f8800017c: Client 4cdca12e3321e80f8800017b granted access code 3e6cf2b492eff24167c146f9f372bff9a049b0b544f6663535e7a3365c8d8a91
|
209160
|
+
Request 4cdca12e3321e80f8800017e: Client UberClient requested code with scope read write
|
209161
|
+
|
209162
|
+
|
209163
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209164
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"8fa6fcf7376fb91306094399ae88ca466020205ddaf6c7aa57d343623cceddcf", "client_id"=>"4cdca12e3321e80f8800017d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209165
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=8fa6fcf7376fb91306094399ae88ca466020205ddaf6c7aa57d343623cceddcf&client_id=4cdca12e3321e80f8800017d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209166
|
+
|
209167
|
+
|
209168
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209169
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f8800017e"}
|
209170
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209171
|
+
Request 4cdca12e3321e80f8800017e: Client 4cdca12e3321e80f8800017d granted access code 78824e89f66080e7e2ae484b56222b9c0ce221778c2d0a3fe3c7881653e665cf
|
209172
|
+
Request 4cdca12e3321e80f88000180: Client UberClient requested code with scope read write
|
209173
|
+
|
209174
|
+
|
209175
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209176
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"eddf69db3426f136936a7bc97076cdc7d53d248ce09a07092a4e76a03bed8825", "client_id"=>"4cdca12e3321e80f8800017f", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209177
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=eddf69db3426f136936a7bc97076cdc7d53d248ce09a07092a4e76a03bed8825&client_id=4cdca12e3321e80f8800017f&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209178
|
+
|
209179
|
+
|
209180
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209181
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000180"}
|
209182
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209183
|
+
Request 4cdca12e3321e80f88000180: Client 4cdca12e3321e80f8800017f granted access code 17bc538cfa217d7209f0268d008581a099e1955c7efe1674bed4b051997d74e2
|
209184
|
+
Request 4cdca12e3321e80f88000182: Client UberClient requested code with scope read write
|
209185
|
+
|
209186
|
+
|
209187
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209188
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"bdffe4074674787b172f5f68ad561849c4320161f2e108d298c3f2fffa7677ac", "client_id"=>"4cdca12e3321e80f88000181", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209189
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=bdffe4074674787b172f5f68ad561849c4320161f2e108d298c3f2fffa7677ac&client_id=4cdca12e3321e80f88000181&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209190
|
+
|
209191
|
+
|
209192
|
+
Processing OauthController#grant (for 127.0.0.1 at 2010-11-11 18:06:38) [POST]
|
209193
|
+
Parameters: {"authorization"=>"4cdca12e3321e80f88000182"}
|
209194
|
+
Completed in 1ms (View: 0 | 200 OK [http://example.org/oauth/grant]
|
209195
|
+
Request 4cdca12e3321e80f88000182: Client 4cdca12e3321e80f88000181 granted access code a348992c4aad21d19e0f8dfba87488425a48cece1fd8c340fe0ac0c14f3b56ad
|
209196
|
+
Request 4cdca12e3321e80f88000184: Client UberClient requested code with scope read write
|
209197
|
+
|
209198
|
+
|
209199
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209200
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"4dc9ab75af79d15c30d69ebd7a191ee49800e5cf1a8c2c2908bd3bff1dd8d43c", "client_id"=>"4cdca12e3321e80f88000183", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209201
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=4dc9ab75af79d15c30d69ebd7a191ee49800e5cf1a8c2c2908bd3bff1dd8d43c&client_id=4cdca12e3321e80f88000183&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209202
|
+
Request 4cdca12e3321e80f88000186: Client UberClient requested code with scope read write
|
209203
|
+
|
209204
|
+
|
209205
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209206
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"11755ceed985e928d29338e0262439865d0b4ed10a011414cb54ba02799bcbaa", "client_id"=>"4cdca12e3321e80f88000185", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209207
|
+
Completed in 53ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=11755ceed985e928d29338e0262439865d0b4ed10a011414cb54ba02799bcbaa&client_id=4cdca12e3321e80f88000185&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209208
|
+
Request 4cdca12e3321e80f88000188: Client UberClient requested code with scope time-travel
|
209209
|
+
|
209210
|
+
|
209211
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209212
|
+
Parameters: {"scope"=>"time-travel", "response_type"=>"code", "client_secret"=>"6a24af8b734280c928ca3887c3525a7e2fc251500024f4de1ef2b56eeae219f2", "client_id"=>"4cdca12e3321e80f88000187", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209213
|
+
Filter chain halted as [#<Proc:0x00000001018f8d90@/Users/assaf/projects/rack-oauth2-server/test/rails/app/controllers/oauth_controller.rb:2>] rendered_or_redirected.
|
209214
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/authorize?scope=time-travel&response_type=code&client_secret=6a24af8b734280c928ca3887c3525a7e2fc251500024f4de1ef2b56eeae219f2&client_id=4cdca12e3321e80f88000187&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209215
|
+
Authorization request error: access_denied You are now allowed to access this resource.
|
209216
|
+
Request 4cdca12e3321e80f8800018a: Client UberClient requested code with scope time-travel
|
209217
|
+
|
209218
|
+
|
209219
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209220
|
+
Parameters: {"scope"=>"time-travel", "response_type"=>"code", "client_secret"=>"b86e47c1901c21a6686285cd257304f45f669d1ae19ad2dcfbccd77709f4162e", "client_id"=>"4cdca12e3321e80f88000189", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209221
|
+
Filter chain halted as [#<Proc:0x00000001018f8d90@/Users/assaf/projects/rack-oauth2-server/test/rails/app/controllers/oauth_controller.rb:2>] rendered_or_redirected.
|
209222
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/authorize?scope=time-travel&response_type=code&client_secret=b86e47c1901c21a6686285cd257304f45f669d1ae19ad2dcfbccd77709f4162e&client_id=4cdca12e3321e80f88000189&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209223
|
+
Authorization request error: access_denied You are now allowed to access this resource.
|
209224
|
+
Request 4cdca12e3321e80f8800018c: Client UberClient requested code with scope time-travel
|
209225
|
+
|
209226
|
+
|
209227
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209228
|
+
Parameters: {"scope"=>"time-travel", "response_type"=>"code", "client_secret"=>"66f438c9994da1634c4db6a6e78cc74bd9feea17193e7a7630492e16b93f3c88", "client_id"=>"4cdca12e3321e80f8800018b", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209229
|
+
Filter chain halted as [#<Proc:0x00000001018f8d90@/Users/assaf/projects/rack-oauth2-server/test/rails/app/controllers/oauth_controller.rb:2>] rendered_or_redirected.
|
209230
|
+
Completed in 1ms (View: 0 | 403 Forbidden [http://example.org/oauth/authorize?scope=time-travel&response_type=code&client_secret=66f438c9994da1634c4db6a6e78cc74bd9feea17193e7a7630492e16b93f3c88&client_id=4cdca12e3321e80f8800018b&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209231
|
+
Authorization request error: access_denied You are now allowed to access this resource.
|
209232
|
+
Request 4cdca12e3321e80f8800018e: Client UberClient requested code with scope time-travel
|
209233
|
+
|
209234
|
+
|
209235
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:38) [GET]
|
209236
|
+
Parameters: {"scope"=>"time-travel", "response_type"=>"code", "client_secret"=>"27c823ca6bd436cd37c58d4550ae7fe9923c6b66846bcd90d01f5bdb141e7a77", "client_id"=>"4cdca12e3321e80f8800018d", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209237
|
+
Filter chain halted as [#<Proc:0x00000001018f8d90@/Users/assaf/projects/rack-oauth2-server/test/rails/app/controllers/oauth_controller.rb:2>] rendered_or_redirected.
|
209238
|
+
Completed in 4ms (View: 2 | 403 Forbidden [http://example.org/oauth/authorize?scope=time-travel&response_type=code&client_secret=27c823ca6bd436cd37c58d4550ae7fe9923c6b66846bcd90d01f5bdb141e7a77&client_id=4cdca12e3321e80f8800018d&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209239
|
+
Authorization request error: access_denied You are now allowed to access this resource.
|
209240
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209241
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209242
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209243
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209244
|
+
Authorization request with invalid redirect_uri: http:not-valid Redirect URL looks fishy to me
|
209245
|
+
Authorization request error: redirect_uri_mismatch Must use the same redirect URI you registered with us.
|
209246
|
+
Authorization request error: redirect_uri_mismatch Must use the same redirect URI you registered with us.
|
209247
|
+
Authorization request error: redirect_uri_mismatch Must use the same redirect URI you registered with us.
|
209248
|
+
Authorization request error: redirect_uri_mismatch Must use the same redirect URI you registered with us.
|
209249
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209250
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209251
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209252
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209253
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209254
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209255
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209256
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209257
|
+
Authorization request with invalid redirect_uri: Redirect URL looks fishy to me
|
209258
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209259
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209260
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209261
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209262
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209263
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209264
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209265
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209266
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209267
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209268
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209269
|
+
Authorization request error: unsupported_response_type The requested response type is not supported.
|
209270
|
+
Request 4cdca12f3321e80f880001ae: Client UberClient requested code with scope read write
|
209271
|
+
|
209272
|
+
|
209273
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209274
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"e3ad72fdfc7344e112dbc669d38164620eb8962a3338960cae78521fcfe7cc39", "client_id"=>"4cdca12f3321e80f880001ad", "redirect_uri"=>"http://uberclient.dot/oz", "state"=>"bring this back"}
|
209275
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=e3ad72fdfc7344e112dbc669d38164620eb8962a3338960cae78521fcfe7cc39&client_id=4cdca12f3321e80f880001ad&redirect_uri=http%3A%2F%2Fuberclient.dot%2Foz&state=bring+this+back]
|
209276
|
+
Request 4cdca12f3321e80f880001b0: Client UberClient requested code with scope read write
|
209277
|
+
|
209278
|
+
|
209279
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209280
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"928d9570473ab024c97a39bf7fb06c283fdea9173a15ce18d5869a10cce2ae84", "client_id"=>"4cdca12f3321e80f880001af", "redirect_uri"=>"http://uberclient.dot/oz", "state"=>"bring this back"}
|
209281
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=928d9570473ab024c97a39bf7fb06c283fdea9173a15ce18d5869a10cce2ae84&client_id=4cdca12f3321e80f880001af&redirect_uri=http%3A%2F%2Fuberclient.dot%2Foz&state=bring+this+back]
|
209282
|
+
Authorization request error: invalid_scope The requested scope is not supported.
|
209283
|
+
Authorization request error: invalid_scope The requested scope is not supported.
|
209284
|
+
Authorization request error: invalid_scope The requested scope is not supported.
|
209285
|
+
Authorization request error: invalid_scope The requested scope is not supported.
|
209286
|
+
Request 4cdca12f3321e80f880001b6: Client UberClient requested code with scope read write
|
209287
|
+
|
209288
|
+
|
209289
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209290
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"cdbeb20754e04a5c9d659bb867e8bf7f4dccfda9a291a1f9e05f5eb1495620b5", "client_id"=>"4cdca12f3321e80f880001b5", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209291
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=cdbeb20754e04a5c9d659bb867e8bf7f4dccfda9a291a1f9e05f5eb1495620b5&client_id=4cdca12f3321e80f880001b5&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209292
|
+
Request 4cdca12f3321e80f880001b6: Client UberClient requested code with scope read write
|
209293
|
+
|
209294
|
+
|
209295
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209296
|
+
Parameters: {"authorization"=>"4cdca12f3321e80f880001b6"}
|
209297
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cdca12f3321e80f880001b6]
|
209298
|
+
Request 4cdca12f3321e80f880001b8: Client UberClient requested code with scope read write
|
209299
|
+
|
209300
|
+
|
209301
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209302
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"d1048e4818a8d06784b83b8130c62241c5054b52a8b9bf1cbfa3df429510e175", "client_id"=>"4cdca12f3321e80f880001b7", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209303
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=d1048e4818a8d06784b83b8130c62241c5054b52a8b9bf1cbfa3df429510e175&client_id=4cdca12f3321e80f880001b7&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209304
|
+
Request 4cdca12f3321e80f880001b8: Client UberClient requested code with scope read write
|
209305
|
+
|
209306
|
+
|
209307
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209308
|
+
Parameters: {"authorization"=>"4cdca12f3321e80f880001b8"}
|
209309
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?authorization=4cdca12f3321e80f880001b8]
|
209310
|
+
Request 4cdca12f3321e80f880001ba: Client UberClient requested code with scope read write
|
209311
|
+
|
209312
|
+
|
209313
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209314
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"ab3be426a2106547cf29f09c602d2603cee0c5f48586f06ab9f2bee21694e6e5", "client_id"=>"4cdca12f3321e80f880001b9", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209315
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=ab3be426a2106547cf29f09c602d2603cee0c5f48586f06ab9f2bee21694e6e5&client_id=4cdca12f3321e80f880001b9&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209316
|
+
Invalid authorization request
|
209317
|
+
Request 4cdca12f3321e80f880001bc: Client UberClient requested code with scope read write
|
209318
|
+
|
209319
|
+
|
209320
|
+
Processing OauthController#authorize (for 127.0.0.1 at 2010-11-11 18:06:39) [GET]
|
209321
|
+
Parameters: {"scope"=>"read write", "response_type"=>"code", "client_secret"=>"7aaa909abbfce4ff4a3057a6a944e756413dffa7b99f425653d15da611bb7d32", "client_id"=>"4cdca12f3321e80f880001bb", "redirect_uri"=>"http://uberclient.dot/callback", "state"=>"bring this back"}
|
209322
|
+
Completed in 2ms (View: 0 | 200 OK [http://example.org/oauth/authorize?scope=read+write&response_type=code&client_secret=7aaa909abbfce4ff4a3057a6a944e756413dffa7b99f425653d15da611bb7d32&client_id=4cdca12f3321e80f880001bb&redirect_uri=http%3A%2F%2Fuberclient.dot%2Fcallback&state=bring+this+back]
|
209323
|
+
Invalid authorization request #<Rack::OAuth2::Server::AuthRequest:0x1025a5d40>
|
209324
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209325
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209326
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|
209327
|
+
Authorization request error: invalid_client Client ID and client secret do not match.
|