File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -653,6 +653,7 @@ dictionary IdentityProviderRequestOptions : IdentityProviderConfig {
653
653
USVString nonce;
654
654
DOMString loginHint;
655
655
DOMString domainHint;
656
+ any params;
656
657
};
657
658
</xmp>
658
659
@@ -1198,12 +1199,17 @@ To <dfn>fetch an identity assertion</dfn> given a {{USVString}}
1198
1199
1. Let |tokenUrl| be the result of [=computing the manifest URL=] given |provider|,
1199
1200
|config|["{{IdentityProviderAPIConfig/id_assertion_endpoint}}"] , and |globalObject|.
1200
1201
1. If |tokenUrl| is failure, return failure.
1201
- 1. Let |requestBody | be the result of running [=urlencoded serializer=] with a list containing :
1202
+ 1. Let |list | be a list with the following entries :
1202
1203
1. ("client_id", |provider|'s {{IdentityProviderConfig/clientId}} )
1203
1204
1. ("nonce", |provider|'s {{IdentityProviderRequestOptions/nonce}} )
1204
1205
1. ("account_id", |accountId|)
1205
1206
1. ("disclosure_text_shown", |disclosureTextShown|)
1206
1207
1. ("is_auto_selected", |isAutoSelected|)
1208
+ 1. If |provider|'s {{IdentityProviderRequestOptions/params}} is not empty:
1209
+ 1. Let |json| be the result of [=serializing a JavaScript value to a JSON string=]
1210
+ with |provider|'s {{IdentityProviderRequestOptions/params}} .
1211
+ 1. Append ("params", |json|) to |list|.
1212
+ 1. Let |requestBody| be the result of running [=urlencoded serializer=] with |list|.
1207
1213
1. Let |request| be a new <a spec=fetch for=/>request</a> as follows:
1208
1214
1209
1215
: [=request/url=]
You can’t perform that action at this time.
0 commit comments