-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Passing arbitrary parameters to the ID assertion endpoint #2
Comments
ProposalWe are proposing letting the RP specify additional fields that will get sent to the IdP: partial dictionary IdentityProviderConfig {
// A map of key-value pairs that are opaque to the browser and only
// passed to the IdP after the user's acknowledgement.
record<USVString, USVString> params;
}; An RP could use them like this: let {token} = await navigator.credentials.get({
identity: {
providers: [{
clientId: "1234",
nonce: "234234",
loginHint: "previous@user.com",
configURL: "https://idp.example/fedcm.json",
// A string with parameters that need to be passed from the
// RP to the IdP but that don't really play any role with
// the browser.
params: {
"IDP_SPECIFIC_PARAM": "1",
"foo": "BAR",
"ETC": "MOAR",
"response_type": "id_token",
"scope": "photos:read photos:write",
}
},
}
// If possible, return without prompting the user, if not possible
// prompt the user.
mediation: "optional",
}); These parameters will be sent to the ID assertion endpoint (that is, they will only be shared with the IdP after user interaction) with a For example, the ID assertion request body might look like this: POST /fedcm_assertion_endpoint HTTP/1.1
Host: idp.example
Origin: https://rp.example/
Content-Type: application/x-www-form-urlencoded
Cookie: 0x23223
Sec-Fetch-Dest: webidentity
account_id=123&client_id=client1234&nonce=234234&disclosure_text_shown=false¶m_reponse_type=id_token¶m_IDP_SPECIFIC_PARAM=1¶m_foo=BAR¶m_ETC=MOAR ConsiderationsParameters are prefixed with This proposal works best in conjunction with the continuation API proposal described in #1 . |
I have split out the scope parameter to #4 because that seems more controversial. |
The discussion in today's fedid CG meeting was in favor of adding params, but was skeptical about responseType. I think it's best to remove that field from this proposal. |
SGTM |
Some OAuth 2.0 registered extension parameters, e.g. To that end a definition like so
cannot be used to achieve a application/x-www-form-urlencoded encoded body which an OAuth 2.0 authorization server understands
|
|
Yep. @cbiesinger is removing https://github.com/fedidcg/FedCM/issues/556#issuecomment-2072677672 |
The scope API is partially redundant, but it also affects the browser UI (which is why it is a separate proposal). You are correct about nonce, but I am not sure we will be able to remove it for backwards compatibility reasons. |
@panva thanks for the information. however I am not sure that exact compatibility with existing endpoints is a goal |
I am sure that was not my point. I simply ask to use a type that allows prior art that is deployed in the wild to be used. |
Would it be possible to allow for an array of strings for param values? This could be constructed as a union to values as strings abut also array of strings. This would allow for the multiple resource example given by @panva |
I think the proposal is to accept an |
As of tomorrow's canary, responseType will no longer be supported in Chrome Regarding arrays of strings, it is certainly doable if we decide to support it. |
To be a bit clearer on the usual API shape for accepting these sorts of things: it's sequence<sequence<USVString>> or record<USVString, USVString> with extra processing on the first variant. See https://fetch.spec.whatwg.org/#concept-headers-fill for the processing algorithm. This allows the formats {
"key": "value",
"key2": "value2"
} as well as [
["key", "value"]
["key", "value2"]
] but notably does not allow {
"key": ["value1", "value2"]
} or [
["key", ["value1", "value2"]]
] |
@domenic I'm curious why not FilePickerAcceptType seems to use that. |
but I see that the URLSearchParams constructor uses your suggestion |
Is there a reason to maintain the nonce when this is added? |
No I don't think so. I mentioned in another issue (can't find it at the moment) that unless FedCM defines some specific processing behavior to use/validate the |
To get back to my original point, aside of backwards compatibility, which, as I said, is possible but not free:
The point that I'm trying to make is that the There is a series of key privacy and security checks (e.g. the These are key parameters that shouldn't be ignored and have to be processed intentionally: they are the parameters to the I understand that there is an ergonomics benefit of prefixing these and un-prefixing the |
No joking here. Managing backwards incompatible changes is part of the challenge of shipping an experimental API that doesn't have the implementation experience, standard set, or another browser shipping. This is also what the adoptees were signing up for when using an experimental API. **Edited because I accidentally closed via misclick |
Yeah, I think we are roughly on the same page: it is a risk that we are happy that we took, and are happy to manage it now. Part of managing that risk is acknowledging that they are often going to be necessary and but also that they are not free, so being smart and deliberate about the choices. LMK if you disagree with anything in this response here: https://github.com/fedidcg/FedCM/issues/556#issuecomment-2135670331 |
Yes, I do believe the circumstance that there stands to be a chance of a clean oauth profile for fedcm and other existing prior idp art is entirely accidental.
I agree it's unsafe, but also noone suggested it. An oauth binding for fedcm would't dare omitting the mandatory idp provisions set forth by fedcm regardless of whether its parameters are prefixed or not.
100% agree. But one can intentionally (or unintentionally) mess up fedcm's provisions regardless of how custom vs fedcm-specific params are transmitted. Bad implementations are inevitable. They are also not a strong argument against an affordance for respecting years of prior idp art. |
I think we are starting to talk past each other now: I'm not suggesting that we ignore prior art, I'm suggesting that this is an entirely new layer that's being introduced, and that the parameters are specific to that layer. I already made this point, so don't think it is a matter of clarification. |
Proposal on the 2024-06-11 call: what if this was POST w/ JSON payload vs parameters? Then the |
Another observation that was discussed with @aaronpk and @bc-pi in the CG call was that the feedback from IdPs that they would be really worried about opening up their oauth endpoints to start taking traffic from the FedCM flows, because that could lead to unintended consequences to a very security sensitive piece of infrastructure. For example, FedCM requires the |
Clarifying question for FedCM implementations and intent going forward... are the arbitrary
|
The values are currently defined as strings in the IDL, so if you try to pass an object, you will get standard JS behavior to convert to string, which will likely result in "[Object object]" or somesuch. (you can of course call JSON.stringify yourself)
As a note, because of how CORS works (https://fetch.spec.whatwg.org/#cors-safelisted-request-header) this would make the ID assertion fetch require a CORS preflight request. This isn't necessarily a problem but I wanted to point that out. |
It seems reasonable to support arbitrary structure. That is what the discussion in w3c-fedid/idp-registration#13 led to. But things get weird when you start having numbers that parse out of JSON imprecisely, like |
Hmm if we start supporting arbitrary JSON objects and (presumably) serialize that into a string to send as a parameter value -- maybe we should go a step further and just send |
Yeah, that occurred to me, and it seems right. That's what we are going to do for the digital credentials API. It also addresses the question of what prefix to use for params: none at all. |
Adding agenda+ to discuss the proposal in the last two comments & to hear if there was an outcome at the IETF meeting |
I understand that the discussion is about https://www.w3.org/TR/fedcm/#idp-api-id-assertion-endpoint Which currently states:
Reading the proposal
I don't understand why the content type of the request body can't be changed to I'm sorry if I missed something obvious. |
It is possible, although there are two/three downsides to that proposal:
But yeah we could go that route. The easiest way to do that might be to require IDPs to opt in to that when they are ready and eventually remove support for urlencoded. |
We discussed this at today's FedID CG call. The outcome was that everyone is happier now that we no longer prefix parameters and support arbitrary values (not just strings). There was no particular preference for application/json vs urlencoded as far as I can tell. |
I suppose if there are no benefits to using application/json then we can keep the current as it a) avoids backwards incompatible change and b) avoids CORS preflights (which would need to be supported by IDPs, although if needed I don't think it would be a big deal) |
I think this has its own merits and challenges on its own, outside of the discussion of how this issue. I kicked off w3c-fedid/FedCM#644 to decouple the discussion, so that we can make forward progress on this issue independently, and move to |
This implements the consensus from the FedID CG described here: w3c-fedid/custom-requests#2 (comment) For easier migration for IDPs, this still sends the previous param_ prefixed parameters as well for now. Bug: 40262526 Change-Id: I2fe16a2776cecc76b58f339c1a33221f1781aaac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5870964 Commit-Queue: Christian Biesinger <cbiesinger@chromium.org> Reviewed-by: Nicolás Peña <npm@chromium.org> Cr-Commit-Position: refs/heads/main@{#1357291}
* Specify the params API Bug: w3c-fedid/custom-requests#2 * Update spec/index.bs Co-authored-by: Ted Thibodeau Jr <tthibodeau@openlinksw.com> * any --------- Co-authored-by: Ted Thibodeau Jr <tthibodeau@openlinksw.com>
(this has been split out of w3c-fedid/FedCM#477 )
Also, there is currently no general-purpose way to pass information from the RP to the ID assertion endpoint. It is already possible to pass arbitrary data through the “nonce” or the “client_id” field; however, this is inconvenient and unstructured. An explicit way to pass key/value pairs would be better.
The text was updated successfully, but these errors were encountered: