1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
|
// Package identitytoolkit provides access to the Google Identity Toolkit API.
//
// See https://developers.google.com/identity-toolkit/v3/
//
// Usage example:
//
// import "google.golang.org/api/identitytoolkit/v3"
// ...
// identitytoolkitService, err := identitytoolkit.New(oauthHttpClient)
package identitytoolkit
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"golang.org/x/net/context"
"google.golang.org/api/googleapi"
"io"
"net/http"
"net/url"
"strconv"
"strings"
)
// Always reference these packages, just in case the auto-generated code
// below doesn't.
var _ = bytes.NewBuffer
var _ = strconv.Itoa
var _ = fmt.Sprintf
var _ = json.NewDecoder
var _ = io.Copy
var _ = url.Parse
var _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Background
const apiId = "identitytoolkit:v3"
const apiName = "identitytoolkit"
const apiVersion = "v3"
const basePath = "https://www.googleapis.com/identitytoolkit/v3/relyingparty/"
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.Relyingparty = NewRelyingpartyService(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Relyingparty *RelyingpartyService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewRelyingpartyService(s *Service) *RelyingpartyService {
rs := &RelyingpartyService{s: s}
return rs
}
type RelyingpartyService struct {
s *Service
}
type CreateAuthUriResponse struct {
// AuthUri: The URI used by the IDP to authenticate the user.
AuthUri string `json:"authUri,omitempty"`
// CaptchaRequired: True if captcha is required.
CaptchaRequired bool `json:"captchaRequired,omitempty"`
// ForExistingProvider: True if the authUri is for user's existing
// provider.
ForExistingProvider bool `json:"forExistingProvider,omitempty"`
// Kind: The fixed string identitytoolkit#CreateAuthUriResponse".
Kind string `json:"kind,omitempty"`
// ProviderId: The provider ID of the auth URI.
ProviderId string `json:"providerId,omitempty"`
// Registered: Whether the user is registered if the identifier is an
// email.
Registered bool `json:"registered,omitempty"`
}
type DeleteAccountResponse struct {
// Kind: The fixed string "identitytoolkit#DeleteAccountResponse".
Kind string `json:"kind,omitempty"`
}
type DownloadAccountResponse struct {
// Kind: The fixed string "identitytoolkit#DownloadAccountResponse".
Kind string `json:"kind,omitempty"`
// NextPageToken: The next page token. To be used in a subsequent
// request to return the next page of results.
NextPageToken string `json:"nextPageToken,omitempty"`
// Users: The user accounts data.
Users []*UserInfo `json:"users,omitempty"`
}
type GetAccountInfoResponse struct {
// Kind: The fixed string "identitytoolkit#GetAccountInfoResponse".
Kind string `json:"kind,omitempty"`
// Users: The info of the users.
Users []*UserInfo `json:"users,omitempty"`
}
type GetOobConfirmationCodeResponse struct {
// Kind: The fixed string
// "identitytoolkit#GetOobConfirmationCodeResponse".
Kind string `json:"kind,omitempty"`
// OobCode: The code to be send to the user.
OobCode string `json:"oobCode,omitempty"`
}
type GetRecaptchaParamResponse struct {
// Kind: The fixed string "identitytoolkit#GetRecaptchaParamResponse".
Kind string `json:"kind,omitempty"`
// RecaptchaSiteKey: Site key registered at recaptcha.
RecaptchaSiteKey string `json:"recaptchaSiteKey,omitempty"`
// RecaptchaStoken: The stoken field for the recaptcha widget, used to
// request captcha challenge.
RecaptchaStoken string `json:"recaptchaStoken,omitempty"`
}
type IdentitytoolkitRelyingpartyCreateAuthUriRequest struct {
// AppId: The app ID of the mobile app, base64(CERT_SHA1):PACKAGE_NAME
// for Android, BUNDLE_ID for iOS.
AppId string `json:"appId,omitempty"`
// ClientId: The relying party OAuth client ID.
ClientId string `json:"clientId,omitempty"`
// Context: The opaque value used by the client to maintain context info
// between the authentication request and the IDP callback.
Context string `json:"context,omitempty"`
// ContinueUri: The URI to which the IDP redirects the user after the
// federated login flow.
ContinueUri string `json:"continueUri,omitempty"`
// Identifier: The email or federated ID of the user.
Identifier string `json:"identifier,omitempty"`
// OauthConsumerKey: The developer's consumer key for OpenId OAuth
// Extension
OauthConsumerKey string `json:"oauthConsumerKey,omitempty"`
// OauthScope: Additional oauth scopes, beyond the basid user profile,
// that the user would be prompted to grant
OauthScope string `json:"oauthScope,omitempty"`
// OpenidRealm: Optional realm for OpenID protocol. The sub string
// "scheme://domain:port" of the param "continueUri" is used if this is
// not set.
OpenidRealm string `json:"openidRealm,omitempty"`
// OtaApp: The native app package for OTA installation.
OtaApp string `json:"otaApp,omitempty"`
// ProviderId: The IdP ID. For white listed IdPs it's a short domain
// name e.g. google.com, aol.com, live.net and yahoo.com. For other
// OpenID IdPs it's the OP identifier.
ProviderId string `json:"providerId,omitempty"`
}
type IdentitytoolkitRelyingpartyDeleteAccountRequest struct {
// LocalId: The local ID of the user.
LocalId string `json:"localId,omitempty"`
}
type IdentitytoolkitRelyingpartyDownloadAccountRequest struct {
// MaxResults: The max number of results to return in the response.
MaxResults int64 `json:"maxResults,omitempty"`
// NextPageToken: The token for the next page. This should be taken from
// the previous response.
NextPageToken string `json:"nextPageToken,omitempty"`
}
type IdentitytoolkitRelyingpartyGetAccountInfoRequest struct {
// Email: The list of emails of the users to inquiry.
Email []string `json:"email,omitempty"`
// IdToken: The GITKit token of the authenticated user.
IdToken string `json:"idToken,omitempty"`
// LocalId: The list of local ID's of the users to inquiry.
LocalId []string `json:"localId,omitempty"`
}
type IdentitytoolkitRelyingpartyResetPasswordRequest struct {
// Email: The email address of the user.
Email string `json:"email,omitempty"`
// NewPassword: The new password inputted by the user.
NewPassword string `json:"newPassword,omitempty"`
// OldPassword: The old password inputted by the user.
OldPassword string `json:"oldPassword,omitempty"`
// OobCode: The confirmation code.
OobCode string `json:"oobCode,omitempty"`
}
type IdentitytoolkitRelyingpartySetAccountInfoRequest struct {
// CaptchaChallenge: The captcha challenge.
CaptchaChallenge string `json:"captchaChallenge,omitempty"`
// CaptchaResponse: Response to the captcha.
CaptchaResponse string `json:"captchaResponse,omitempty"`
// DisableUser: Whether to disable the user.
DisableUser bool `json:"disableUser,omitempty"`
// DisplayName: The name of the user.
DisplayName string `json:"displayName,omitempty"`
// Email: The email of the user.
Email string `json:"email,omitempty"`
// EmailVerified: Mark the email as verified or not.
EmailVerified bool `json:"emailVerified,omitempty"`
// IdToken: The GITKit token of the authenticated user.
IdToken string `json:"idToken,omitempty"`
// LocalId: The local ID of the user.
LocalId string `json:"localId,omitempty"`
// OobCode: The out-of-band code of the change email request.
OobCode string `json:"oobCode,omitempty"`
// Password: The new password of the user.
Password string `json:"password,omitempty"`
// Provider: The associated IDPs of the user.
Provider []string `json:"provider,omitempty"`
// UpgradeToFederatedLogin: Mark the user to upgrade to federated login.
UpgradeToFederatedLogin bool `json:"upgradeToFederatedLogin,omitempty"`
// ValidSince: Timestamp in seconds for valid login token.
ValidSince int64 `json:"validSince,omitempty,string"`
}
type IdentitytoolkitRelyingpartyUploadAccountRequest struct {
// HashAlgorithm: The password hash algorithm.
HashAlgorithm string `json:"hashAlgorithm,omitempty"`
// MemoryCost: Memory cost for hash calculation. Used by scrypt similar
// algorithms.
MemoryCost int64 `json:"memoryCost,omitempty"`
// Rounds: Rounds for hash calculation. Used by scrypt and similar
// algorithms.
Rounds int64 `json:"rounds,omitempty"`
// SaltSeparator: The salt separator.
SaltSeparator string `json:"saltSeparator,omitempty"`
// SignerKey: The key for to hash the password.
SignerKey string `json:"signerKey,omitempty"`
// Users: The account info to be stored.
Users []*UserInfo `json:"users,omitempty"`
}
type IdentitytoolkitRelyingpartyVerifyAssertionRequest struct {
// PendingIdToken: The GITKit token for the non-trusted IDP pending to
// be confirmed by the user.
PendingIdToken string `json:"pendingIdToken,omitempty"`
// PostBody: The post body if the request is a HTTP POST.
PostBody string `json:"postBody,omitempty"`
// RequestUri: The URI to which the IDP redirects the user back. It may
// contain federated login result params added by the IDP.
RequestUri string `json:"requestUri,omitempty"`
// ReturnRefreshToken: Whether to return refresh tokens.
ReturnRefreshToken bool `json:"returnRefreshToken,omitempty"`
}
type IdentitytoolkitRelyingpartyVerifyPasswordRequest struct {
// CaptchaChallenge: The captcha challenge.
CaptchaChallenge string `json:"captchaChallenge,omitempty"`
// CaptchaResponse: Response to the captcha.
CaptchaResponse string `json:"captchaResponse,omitempty"`
// Email: The email of the user.
Email string `json:"email,omitempty"`
// Password: The password inputed by the user.
Password string `json:"password,omitempty"`
// PendingIdToken: The GITKit token for the non-trusted IDP, which is to
// be confirmed by the user.
PendingIdToken string `json:"pendingIdToken,omitempty"`
}
type Relyingparty struct {
// CaptchaResp: The recaptcha response from the user.
CaptchaResp string `json:"captchaResp,omitempty"`
// Challenge: The recaptcha challenge presented to the user.
Challenge string `json:"challenge,omitempty"`
// Email: The email of the user.
Email string `json:"email,omitempty"`
// IdToken: The user's Gitkit login token for email change.
IdToken string `json:"idToken,omitempty"`
// Kind: The fixed string "identitytoolkit#relyingparty".
Kind string `json:"kind,omitempty"`
// NewEmail: The new email if the code is for email change.
NewEmail string `json:"newEmail,omitempty"`
// RequestType: The request type.
RequestType string `json:"requestType,omitempty"`
// UserIp: The IP address of the user.
UserIp string `json:"userIp,omitempty"`
}
type ResetPasswordResponse struct {
// Email: The user's email.
Email string `json:"email,omitempty"`
// Kind: The fixed string "identitytoolkit#ResetPasswordResponse".
Kind string `json:"kind,omitempty"`
}
type SetAccountInfoResponse struct {
// DisplayName: The name of the user.
DisplayName string `json:"displayName,omitempty"`
// Email: The email of the user.
Email string `json:"email,omitempty"`
// IdToken: The Gitkit id token to login the newly sign up user.
IdToken string `json:"idToken,omitempty"`
// Kind: The fixed string "identitytoolkit#SetAccountInfoResponse".
Kind string `json:"kind,omitempty"`
// ProviderUserInfo: The user's profiles at the associated IdPs.
ProviderUserInfo []*SetAccountInfoResponseProviderUserInfo `json:"providerUserInfo,omitempty"`
}
type SetAccountInfoResponseProviderUserInfo struct {
// DisplayName: The user's display name at the IDP.
DisplayName string `json:"displayName,omitempty"`
// PhotoUrl: The user's photo url at the IDP.
PhotoUrl string `json:"photoUrl,omitempty"`
// ProviderId: The IdP ID. For whitelisted IdPs it's a short domain
// name, e.g., google.com, aol.com, live.net and yahoo.com. For other
// OpenID IdPs it's the OP identifier.
ProviderId string `json:"providerId,omitempty"`
}
type UploadAccountResponse struct {
// Error: The error encountered while processing the account info.
Error []*UploadAccountResponseError `json:"error,omitempty"`
// Kind: The fixed string "identitytoolkit#UploadAccountResponse".
Kind string `json:"kind,omitempty"`
}
type UploadAccountResponseError struct {
// Index: The index of the malformed account, starting from 0.
Index int64 `json:"index,omitempty"`
// Message: Detailed error message for the account info.
Message string `json:"message,omitempty"`
}
type UserInfo struct {
// Disabled: Whether the user is disabled.
Disabled bool `json:"disabled,omitempty"`
// DisplayName: The name of the user.
DisplayName string `json:"displayName,omitempty"`
// Email: The email of the user.
Email string `json:"email,omitempty"`
// EmailVerified: Whether the email has been verified.
EmailVerified bool `json:"emailVerified,omitempty"`
// LocalId: The local ID of the user.
LocalId string `json:"localId,omitempty"`
// PasswordHash: The user's hashed password.
PasswordHash string `json:"passwordHash,omitempty"`
// PasswordUpdatedAt: The timestamp when the password was last updated.
PasswordUpdatedAt float64 `json:"passwordUpdatedAt,omitempty"`
// PhotoUrl: The URL of the user profile photo.
PhotoUrl string `json:"photoUrl,omitempty"`
// ProviderUserInfo: The IDP of the user.
ProviderUserInfo []*UserInfoProviderUserInfo `json:"providerUserInfo,omitempty"`
// Salt: The user's password salt.
Salt string `json:"salt,omitempty"`
// ValidSince: Timestamp in seconds for valid login token.
ValidSince int64 `json:"validSince,omitempty,string"`
// Version: Version of the user's password.
Version int64 `json:"version,omitempty"`
}
type UserInfoProviderUserInfo struct {
// DisplayName: The user's display name at the IDP.
DisplayName string `json:"displayName,omitempty"`
// FederatedId: User's identifier at IDP.
FederatedId string `json:"federatedId,omitempty"`
// PhotoUrl: The user's photo url at the IDP.
PhotoUrl string `json:"photoUrl,omitempty"`
// ProviderId: The IdP ID. For white listed IdPs it's a short domain
// name, e.g., google.com, aol.com, live.net and yahoo.com. For other
// OpenID IdPs it's the OP identifier.
ProviderId string `json:"providerId,omitempty"`
}
type VerifyAssertionResponse struct {
// Action: The action code.
Action string `json:"action,omitempty"`
// AppInstallationUrl: URL for OTA app installation.
AppInstallationUrl string `json:"appInstallationUrl,omitempty"`
// AppScheme: The custom scheme used by mobile app.
AppScheme string `json:"appScheme,omitempty"`
// Context: The opaque value used by the client to maintain context info
// between the authentication request and the IDP callback.
Context string `json:"context,omitempty"`
// DateOfBirth: The birth date of the IdP account.
DateOfBirth string `json:"dateOfBirth,omitempty"`
// DisplayName: The display name of the user.
DisplayName string `json:"displayName,omitempty"`
// Email: The email returned by the IdP. NOTE: The federated login user
// may not own the email.
Email string `json:"email,omitempty"`
// EmailRecycled: It's true if the email is recycled.
EmailRecycled bool `json:"emailRecycled,omitempty"`
// EmailVerified: The value is true if the IDP is also the email
// provider. It means the user owns the email.
EmailVerified bool `json:"emailVerified,omitempty"`
// FederatedId: The unique ID identifies the IdP account.
FederatedId string `json:"federatedId,omitempty"`
// FirstName: The first name of the user.
FirstName string `json:"firstName,omitempty"`
// FullName: The full name of the user.
FullName string `json:"fullName,omitempty"`
// IdToken: The ID token.
IdToken string `json:"idToken,omitempty"`
// InputEmail: It's the identifier param in the createAuthUri request if
// the identifier is an email. It can be used to check whether the user
// input email is different from the asserted email.
InputEmail string `json:"inputEmail,omitempty"`
// Kind: The fixed string "identitytoolkit#VerifyAssertionResponse".
Kind string `json:"kind,omitempty"`
// Language: The language preference of the user.
Language string `json:"language,omitempty"`
// LastName: The last name of the user.
LastName string `json:"lastName,omitempty"`
// LocalId: The RP local ID if it's already been mapped to the IdP
// account identified by the federated ID.
LocalId string `json:"localId,omitempty"`
// NeedConfirmation: Whether the assertion is from a non-trusted IDP and
// need account linking confirmation.
NeedConfirmation bool `json:"needConfirmation,omitempty"`
// NickName: The nick name of the user.
NickName string `json:"nickName,omitempty"`
// OauthAccessToken: The OAuth2 access token.
OauthAccessToken string `json:"oauthAccessToken,omitempty"`
// OauthAuthorizationCode: The OAuth2 authorization code.
OauthAuthorizationCode string `json:"oauthAuthorizationCode,omitempty"`
// OauthExpireIn: The lifetime in seconds of the OAuth2 access token.
OauthExpireIn int64 `json:"oauthExpireIn,omitempty"`
// OauthRequestToken: The user approved request token for the OpenID
// OAuth extension.
OauthRequestToken string `json:"oauthRequestToken,omitempty"`
// OauthScope: The scope for the OpenID OAuth extension.
OauthScope string `json:"oauthScope,omitempty"`
// OriginalEmail: The original email stored in the mapping storage. It's
// returned when the federated ID is associated to a different email.
OriginalEmail string `json:"originalEmail,omitempty"`
// PhotoUrl: The URI of the public accessible profiel picture.
PhotoUrl string `json:"photoUrl,omitempty"`
// ProviderId: The IdP ID. For white listed IdPs it's a short domain
// name e.g. google.com, aol.com, live.net and yahoo.com. If the
// "providerId" param is set to OpenID OP identifer other than the
// whilte listed IdPs the OP identifier is returned. If the "identifier"
// param is federated ID in the createAuthUri request. The domain part
// of the federated ID is returned.
ProviderId string `json:"providerId,omitempty"`
// TimeZone: The timezone of the user.
TimeZone string `json:"timeZone,omitempty"`
// VerifiedProvider: When action is 'map', contains the idps which can
// be used for confirmation.
VerifiedProvider []string `json:"verifiedProvider,omitempty"`
}
type VerifyPasswordResponse struct {
// DisplayName: The name of the user.
DisplayName string `json:"displayName,omitempty"`
// Email: The email returned by the IdP. NOTE: The federated login user
// may not own the email.
Email string `json:"email,omitempty"`
// IdToken: The GITKit token for authenticated user.
IdToken string `json:"idToken,omitempty"`
// Kind: The fixed string "identitytoolkit#VerifyPasswordResponse".
Kind string `json:"kind,omitempty"`
// LocalId: The RP local ID if it's already been mapped to the IdP
// account identified by the federated ID.
LocalId string `json:"localId,omitempty"`
// PhotoUrl: The URI of the user's photo at IdP
PhotoUrl string `json:"photoUrl,omitempty"`
// Registered: Whether the email is registered.
Registered bool `json:"registered,omitempty"`
}
// method id "identitytoolkit.relyingparty.createAuthUri":
type RelyingpartyCreateAuthUriCall struct {
s *Service
identitytoolkitrelyingpartycreateauthurirequest *IdentitytoolkitRelyingpartyCreateAuthUriRequest
opt_ map[string]interface{}
}
// CreateAuthUri: Creates the URI used by the IdP to authenticate the
// user.
func (r *RelyingpartyService) CreateAuthUri(identitytoolkitrelyingpartycreateauthurirequest *IdentitytoolkitRelyingpartyCreateAuthUriRequest) *RelyingpartyCreateAuthUriCall {
c := &RelyingpartyCreateAuthUriCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartycreateauthurirequest = identitytoolkitrelyingpartycreateauthurirequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyCreateAuthUriCall) Fields(s ...googleapi.Field) *RelyingpartyCreateAuthUriCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyCreateAuthUriCall) Do() (*CreateAuthUriResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartycreateauthurirequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "createAuthUri")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *CreateAuthUriResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Creates the URI used by the IdP to authenticate the user.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.createAuthUri",
// "path": "createAuthUri",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyCreateAuthUriRequest"
// },
// "response": {
// "$ref": "CreateAuthUriResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.deleteAccount":
type RelyingpartyDeleteAccountCall struct {
s *Service
identitytoolkitrelyingpartydeleteaccountrequest *IdentitytoolkitRelyingpartyDeleteAccountRequest
opt_ map[string]interface{}
}
// DeleteAccount: Delete user account.
func (r *RelyingpartyService) DeleteAccount(identitytoolkitrelyingpartydeleteaccountrequest *IdentitytoolkitRelyingpartyDeleteAccountRequest) *RelyingpartyDeleteAccountCall {
c := &RelyingpartyDeleteAccountCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartydeleteaccountrequest = identitytoolkitrelyingpartydeleteaccountrequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyDeleteAccountCall) Fields(s ...googleapi.Field) *RelyingpartyDeleteAccountCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyDeleteAccountCall) Do() (*DeleteAccountResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartydeleteaccountrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "deleteAccount")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *DeleteAccountResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Delete user account.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.deleteAccount",
// "path": "deleteAccount",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyDeleteAccountRequest"
// },
// "response": {
// "$ref": "DeleteAccountResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.downloadAccount":
type RelyingpartyDownloadAccountCall struct {
s *Service
identitytoolkitrelyingpartydownloadaccountrequest *IdentitytoolkitRelyingpartyDownloadAccountRequest
opt_ map[string]interface{}
}
// DownloadAccount: Batch download user accounts.
func (r *RelyingpartyService) DownloadAccount(identitytoolkitrelyingpartydownloadaccountrequest *IdentitytoolkitRelyingpartyDownloadAccountRequest) *RelyingpartyDownloadAccountCall {
c := &RelyingpartyDownloadAccountCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartydownloadaccountrequest = identitytoolkitrelyingpartydownloadaccountrequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyDownloadAccountCall) Fields(s ...googleapi.Field) *RelyingpartyDownloadAccountCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyDownloadAccountCall) Do() (*DownloadAccountResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartydownloadaccountrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "downloadAccount")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *DownloadAccountResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Batch download user accounts.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.downloadAccount",
// "path": "downloadAccount",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyDownloadAccountRequest"
// },
// "response": {
// "$ref": "DownloadAccountResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.getAccountInfo":
type RelyingpartyGetAccountInfoCall struct {
s *Service
identitytoolkitrelyingpartygetaccountinforequest *IdentitytoolkitRelyingpartyGetAccountInfoRequest
opt_ map[string]interface{}
}
// GetAccountInfo: Returns the account info.
func (r *RelyingpartyService) GetAccountInfo(identitytoolkitrelyingpartygetaccountinforequest *IdentitytoolkitRelyingpartyGetAccountInfoRequest) *RelyingpartyGetAccountInfoCall {
c := &RelyingpartyGetAccountInfoCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartygetaccountinforequest = identitytoolkitrelyingpartygetaccountinforequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyGetAccountInfoCall) Fields(s ...googleapi.Field) *RelyingpartyGetAccountInfoCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyGetAccountInfoCall) Do() (*GetAccountInfoResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartygetaccountinforequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "getAccountInfo")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *GetAccountInfoResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Returns the account info.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.getAccountInfo",
// "path": "getAccountInfo",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyGetAccountInfoRequest"
// },
// "response": {
// "$ref": "GetAccountInfoResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.getOobConfirmationCode":
type RelyingpartyGetOobConfirmationCodeCall struct {
s *Service
relyingparty *Relyingparty
opt_ map[string]interface{}
}
// GetOobConfirmationCode: Get a code for user action confirmation.
func (r *RelyingpartyService) GetOobConfirmationCode(relyingparty *Relyingparty) *RelyingpartyGetOobConfirmationCodeCall {
c := &RelyingpartyGetOobConfirmationCodeCall{s: r.s, opt_: make(map[string]interface{})}
c.relyingparty = relyingparty
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyGetOobConfirmationCodeCall) Fields(s ...googleapi.Field) *RelyingpartyGetOobConfirmationCodeCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyGetOobConfirmationCodeCall) Do() (*GetOobConfirmationCodeResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.relyingparty)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "getOobConfirmationCode")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *GetOobConfirmationCodeResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Get a code for user action confirmation.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.getOobConfirmationCode",
// "path": "getOobConfirmationCode",
// "request": {
// "$ref": "Relyingparty"
// },
// "response": {
// "$ref": "GetOobConfirmationCodeResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.getPublicKeys":
type RelyingpartyGetPublicKeysCall struct {
s *Service
opt_ map[string]interface{}
}
// GetPublicKeys: Get token signing public key.
func (r *RelyingpartyService) GetPublicKeys() *RelyingpartyGetPublicKeysCall {
c := &RelyingpartyGetPublicKeysCall{s: r.s, opt_: make(map[string]interface{})}
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyGetPublicKeysCall) Fields(s ...googleapi.Field) *RelyingpartyGetPublicKeysCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyGetPublicKeysCall) Do() (map[string]string, error) {
var body io.Reader = nil
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "publicKeys")
urls += "?" + params.Encode()
req, _ := http.NewRequest("GET", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret map[string]string
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Get token signing public key.",
// "httpMethod": "GET",
// "id": "identitytoolkit.relyingparty.getPublicKeys",
// "path": "publicKeys",
// "response": {
// "$ref": "IdentitytoolkitRelyingpartyGetPublicKeysResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.getRecaptchaParam":
type RelyingpartyGetRecaptchaParamCall struct {
s *Service
opt_ map[string]interface{}
}
// GetRecaptchaParam: Get recaptcha secure param.
func (r *RelyingpartyService) GetRecaptchaParam() *RelyingpartyGetRecaptchaParamCall {
c := &RelyingpartyGetRecaptchaParamCall{s: r.s, opt_: make(map[string]interface{})}
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyGetRecaptchaParamCall) Fields(s ...googleapi.Field) *RelyingpartyGetRecaptchaParamCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyGetRecaptchaParamCall) Do() (*GetRecaptchaParamResponse, error) {
var body io.Reader = nil
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "getRecaptchaParam")
urls += "?" + params.Encode()
req, _ := http.NewRequest("GET", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *GetRecaptchaParamResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Get recaptcha secure param.",
// "httpMethod": "GET",
// "id": "identitytoolkit.relyingparty.getRecaptchaParam",
// "path": "getRecaptchaParam",
// "response": {
// "$ref": "GetRecaptchaParamResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.resetPassword":
type RelyingpartyResetPasswordCall struct {
s *Service
identitytoolkitrelyingpartyresetpasswordrequest *IdentitytoolkitRelyingpartyResetPasswordRequest
opt_ map[string]interface{}
}
// ResetPassword: Reset password for a user.
func (r *RelyingpartyService) ResetPassword(identitytoolkitrelyingpartyresetpasswordrequest *IdentitytoolkitRelyingpartyResetPasswordRequest) *RelyingpartyResetPasswordCall {
c := &RelyingpartyResetPasswordCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartyresetpasswordrequest = identitytoolkitrelyingpartyresetpasswordrequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyResetPasswordCall) Fields(s ...googleapi.Field) *RelyingpartyResetPasswordCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyResetPasswordCall) Do() (*ResetPasswordResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartyresetpasswordrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "resetPassword")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *ResetPasswordResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Reset password for a user.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.resetPassword",
// "path": "resetPassword",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyResetPasswordRequest"
// },
// "response": {
// "$ref": "ResetPasswordResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.setAccountInfo":
type RelyingpartySetAccountInfoCall struct {
s *Service
identitytoolkitrelyingpartysetaccountinforequest *IdentitytoolkitRelyingpartySetAccountInfoRequest
opt_ map[string]interface{}
}
// SetAccountInfo: Set account info for a user.
func (r *RelyingpartyService) SetAccountInfo(identitytoolkitrelyingpartysetaccountinforequest *IdentitytoolkitRelyingpartySetAccountInfoRequest) *RelyingpartySetAccountInfoCall {
c := &RelyingpartySetAccountInfoCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartysetaccountinforequest = identitytoolkitrelyingpartysetaccountinforequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartySetAccountInfoCall) Fields(s ...googleapi.Field) *RelyingpartySetAccountInfoCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartySetAccountInfoCall) Do() (*SetAccountInfoResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartysetaccountinforequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "setAccountInfo")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *SetAccountInfoResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Set account info for a user.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.setAccountInfo",
// "path": "setAccountInfo",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartySetAccountInfoRequest"
// },
// "response": {
// "$ref": "SetAccountInfoResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.uploadAccount":
type RelyingpartyUploadAccountCall struct {
s *Service
identitytoolkitrelyingpartyuploadaccountrequest *IdentitytoolkitRelyingpartyUploadAccountRequest
opt_ map[string]interface{}
}
// UploadAccount: Batch upload existing user accounts.
func (r *RelyingpartyService) UploadAccount(identitytoolkitrelyingpartyuploadaccountrequest *IdentitytoolkitRelyingpartyUploadAccountRequest) *RelyingpartyUploadAccountCall {
c := &RelyingpartyUploadAccountCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartyuploadaccountrequest = identitytoolkitrelyingpartyuploadaccountrequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyUploadAccountCall) Fields(s ...googleapi.Field) *RelyingpartyUploadAccountCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyUploadAccountCall) Do() (*UploadAccountResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartyuploadaccountrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "uploadAccount")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *UploadAccountResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Batch upload existing user accounts.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.uploadAccount",
// "path": "uploadAccount",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyUploadAccountRequest"
// },
// "response": {
// "$ref": "UploadAccountResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.verifyAssertion":
type RelyingpartyVerifyAssertionCall struct {
s *Service
identitytoolkitrelyingpartyverifyassertionrequest *IdentitytoolkitRelyingpartyVerifyAssertionRequest
opt_ map[string]interface{}
}
// VerifyAssertion: Verifies the assertion returned by the IdP.
func (r *RelyingpartyService) VerifyAssertion(identitytoolkitrelyingpartyverifyassertionrequest *IdentitytoolkitRelyingpartyVerifyAssertionRequest) *RelyingpartyVerifyAssertionCall {
c := &RelyingpartyVerifyAssertionCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartyverifyassertionrequest = identitytoolkitrelyingpartyverifyassertionrequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyVerifyAssertionCall) Fields(s ...googleapi.Field) *RelyingpartyVerifyAssertionCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyVerifyAssertionCall) Do() (*VerifyAssertionResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartyverifyassertionrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "verifyAssertion")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *VerifyAssertionResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Verifies the assertion returned by the IdP.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.verifyAssertion",
// "path": "verifyAssertion",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyVerifyAssertionRequest"
// },
// "response": {
// "$ref": "VerifyAssertionResponse"
// }
// }
}
// method id "identitytoolkit.relyingparty.verifyPassword":
type RelyingpartyVerifyPasswordCall struct {
s *Service
identitytoolkitrelyingpartyverifypasswordrequest *IdentitytoolkitRelyingpartyVerifyPasswordRequest
opt_ map[string]interface{}
}
// VerifyPassword: Verifies the user entered password.
func (r *RelyingpartyService) VerifyPassword(identitytoolkitrelyingpartyverifypasswordrequest *IdentitytoolkitRelyingpartyVerifyPasswordRequest) *RelyingpartyVerifyPasswordCall {
c := &RelyingpartyVerifyPasswordCall{s: r.s, opt_: make(map[string]interface{})}
c.identitytoolkitrelyingpartyverifypasswordrequest = identitytoolkitrelyingpartyverifypasswordrequest
return c
}
// Fields allows partial responses to be retrieved.
// See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse
// for more information.
func (c *RelyingpartyVerifyPasswordCall) Fields(s ...googleapi.Field) *RelyingpartyVerifyPasswordCall {
c.opt_["fields"] = googleapi.CombineFields(s)
return c
}
func (c *RelyingpartyVerifyPasswordCall) Do() (*VerifyPasswordResponse, error) {
var body io.Reader = nil
body, err := googleapi.WithoutDataWrapper.JSONReader(c.identitytoolkitrelyingpartyverifypasswordrequest)
if err != nil {
return nil, err
}
ctype := "application/json"
params := make(url.Values)
params.Set("alt", "json")
if v, ok := c.opt_["fields"]; ok {
params.Set("fields", fmt.Sprintf("%v", v))
}
urls := googleapi.ResolveRelative(c.s.BasePath, "verifyPassword")
urls += "?" + params.Encode()
req, _ := http.NewRequest("POST", urls, body)
googleapi.SetOpaque(req.URL)
req.Header.Set("Content-Type", ctype)
req.Header.Set("User-Agent", c.s.userAgent())
res, err := c.s.client.Do(req)
if err != nil {
return nil, err
}
defer googleapi.CloseBody(res)
if err := googleapi.CheckResponse(res); err != nil {
return nil, err
}
var ret *VerifyPasswordResponse
if err := json.NewDecoder(res.Body).Decode(&ret); err != nil {
return nil, err
}
return ret, nil
// {
// "description": "Verifies the user entered password.",
// "httpMethod": "POST",
// "id": "identitytoolkit.relyingparty.verifyPassword",
// "path": "verifyPassword",
// "request": {
// "$ref": "IdentitytoolkitRelyingpartyVerifyPasswordRequest"
// },
// "response": {
// "$ref": "VerifyPasswordResponse"
// }
// }
}
|