OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library handle_access_token_response; | 5 library handle_access_token_response; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 import 'dart:json'; | 8 import 'dart:json' as JSON; |
9 import 'dart:uri'; | 9 import 'dart:uri'; |
10 | 10 |
11 import '../../../http/lib/http.dart' as http; | 11 import '../../../http/lib/http.dart' as http; |
12 | 12 |
13 import 'credentials.dart'; | 13 import 'credentials.dart'; |
14 import 'authorization_exception.dart'; | 14 import 'authorization_exception.dart'; |
15 | 15 |
16 /// The amount of time, in seconds, to add as a "grace period" for credential | 16 /// The amount of time, in seconds, to add as a "grace period" for credential |
17 /// expiration. This allows credential expiration checks to remain valid for a | 17 /// expiration. This allows credential expiration checks to remain valid for a |
18 /// reasonable amount of time. | 18 /// reasonable amount of time. |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 void _validate( | 137 void _validate( |
138 http.Response response, | 138 http.Response response, |
139 Uri tokenEndpoint, | 139 Uri tokenEndpoint, |
140 bool condition, | 140 bool condition, |
141 String message) { | 141 String message) { |
142 if (condition) return; | 142 if (condition) return; |
143 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": ' | 143 throw new FormatException('Invalid OAuth response for "$tokenEndpoint": ' |
144 '$message.\n\n${response.body}'); | 144 '$message.\n\n${response.body}'); |
145 } | 145 } |
OLD | NEW |