You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here, the holder wallet requests the issuer’s authorisation server configurations.
```http
GET https://server.example.com/.well-known/openid-configuration
```
Resolve `/.well-known/openid-configuration` endpoint for `credential_issuer` URI in the credential offer response. The holder wallets also sent the same request to get the issuer’s configurations.
```http
GET https://server.example.com/.well-known/openid-credential-issuer
```
Resolve `/.well-known/openid-credential-issuer` endpoint for `credential_issuer` URI in the credential offer response.
The above is wrong and propose the following order:
Holder wallet obtains the credential_issuer endpoint from the credential offer and then resolves the credential issuer well-known endpoint.
From the response, holder wallet obtains the AS endpoint and then resolves the AS well-known endpoint.
The text was updated successfully, but these errors were encountered:
ok, no problem in the OIDC spec is the other way around ... I assume this has to do with the fact that the OIDC spec provisions for mutiple AS server if I am not mistaken. So, you would fetch the openid-configuration after selecting which AS you want to used.. but I guess the ARF doesn't consider this case? If this is so lets close this @georgepadayatti plz :)
ok, no problem in the OIDC spec is the other way around ... I assume this has to do with the fact that the OIDC spec provisions for mutiple AS server if I am not mistaken. So, you would fetch the openid-configuration after selecting which AS you want to used.. but I guess the ARF doesn't consider this case? If this is so lets close this @georgepadayatti plz :)
Your earlier observation is correct. First credential issuer well-known endpoint is resolved as its present in credential offer and then AS well-known endpoint.
At present the RFC mentions the holder wallet performs discovery in the following order:
/.well-known/openid-configuration
)/.well-known/openid-credential-issuer
)Reference is given below:
eudi-wallet-rfcs/ewc-rfc001-issue-verifiable-credential.md
Lines 140 to 152 in 3a09351
The above is wrong and propose the following order:
credential_issuer
endpoint from the credential offer and then resolves the credential issuer well-known endpoint.The text was updated successfully, but these errors were encountered: