Skip to content

Commit bfa0a09

Browse files
cbiesingerTallTed
andauthored
Specify the params API (#661)
* Specify the params API Bug: w3c-fedid/custom-requests#2 * Update spec/index.bs Co-authored-by: Ted Thibodeau Jr <[email protected]> * any --------- Co-authored-by: Ted Thibodeau Jr <[email protected]>
1 parent 721c213 commit bfa0a09

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

spec/index.bs

+7-1
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,7 @@ dictionary IdentityProviderRequestOptions : IdentityProviderConfig {
653653
USVString nonce;
654654
DOMString loginHint;
655655
DOMString domainHint;
656+
any params;
656657
};
657658
</xmp>
658659

@@ -1198,12 +1199,17 @@ To <dfn>fetch an identity assertion</dfn> given a {{USVString}}
11981199
1. Let |tokenUrl| be the result of [=computing the manifest URL=] given |provider|,
11991200
|config|["{{IdentityProviderAPIConfig/id_assertion_endpoint}}"], and |globalObject|.
12001201
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:
12021203
1. ("client_id", |provider|'s {{IdentityProviderConfig/clientId}})
12031204
1. ("nonce", |provider|'s {{IdentityProviderRequestOptions/nonce}})
12041205
1. ("account_id", |accountId|)
12051206
1. ("disclosure_text_shown", |disclosureTextShown|)
12061207
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|.
12071213
1. Let |request| be a new <a spec=fetch for=/>request</a> as follows:
12081214

12091215
: [=request/url=]

0 commit comments

Comments
 (0)