OLD | NEW |
1 library googleapis.identitytoolkit.v3; | 1 library googleapis.identitytoolkit.v3; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
11 import '../common/common.dart' as common; | 11 import '../common/common.dart' as common; |
12 | 12 |
13 export '../common/common.dart' show ApiRequestError; | 13 export '../common/common.dart' show ApiRequestError; |
14 export '../common/common.dart' show DetailedApiRequestError; | 14 export '../common/common.dart' show DetailedApiRequestError; |
15 | 15 |
16 /** Help the third party sites to implement federated login. */ | 16 /** Help the third party sites to implement federated login. */ |
17 class IdentitytoolkitApi { | 17 class IdentitytoolkitApi { |
18 | 18 |
19 final common_internal.ApiRequester _requester; | 19 final common_internal.ApiRequester _requester; |
20 | 20 |
21 RelyingpartyResourceApi get relyingparty => new RelyingpartyResourceApi(_reque
ster); | 21 RelyingpartyResourceApi get relyingparty => new RelyingpartyResourceApi(_reque
ster); |
22 | 22 |
23 IdentitytoolkitApi(http.Client client) : | 23 IdentitytoolkitApi(http.Client client, {core.String rootUrl: "https://www.goog
leapis.com/", core.String servicePath: "identitytoolkit/v3/relyingparty/"}) : |
24 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "identitytoolkit/v3/relyingparty/"); | 24 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
25 } | 25 } |
26 | 26 |
27 | 27 |
28 /** Not documented yet. */ | 28 /** Not documented yet. */ |
29 class RelyingpartyResourceApi { | 29 class RelyingpartyResourceApi { |
30 final common_internal.ApiRequester _requester; | 30 final common_internal.ApiRequester _requester; |
31 | 31 |
32 RelyingpartyResourceApi(common_internal.ApiRequester client) : | 32 RelyingpartyResourceApi(common_internal.ApiRequester client) : |
33 _requester = client; | 33 _requester = client; |
34 | 34 |
(...skipping 2082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2117 _json["photoUrl"] = photoUrl; | 2117 _json["photoUrl"] = photoUrl; |
2118 } | 2118 } |
2119 if (registered != null) { | 2119 if (registered != null) { |
2120 _json["registered"] = registered; | 2120 _json["registered"] = registered; |
2121 } | 2121 } |
2122 return _json; | 2122 return _json; |
2123 } | 2123 } |
2124 } | 2124 } |
2125 | 2125 |
2126 | 2126 |
OLD | NEW |